try to make artifacts
All checks were successful
/ test (push) Successful in 1m17s
/ upload-many (push) Successful in 16s

This commit is contained in:
Alexander Mahr 2025-02-16 16:09:26 +01:00
parent 3982dae79c
commit f24b7e9acd
2 changed files with 31 additions and 0 deletions

View file

@ -4,3 +4,15 @@ jobs:
runs-on: docker runs-on: docker
steps: steps:
- run: echo All Good - run: echo All Good
upload-many:
runs-on: docker
steps:
- run: mkdir -p artifacts
- run: touch artifacts/ONE artifacts/TWO
- uses: actions/upload-artifact@v3
with:
name: many-artifacts
path: artifacts/

View file

@ -1,3 +1,22 @@
# CI/CD in forgejo # CI/CD in forgejo
adopted from https://forgejo.org/docs/v1.20/user/actions/ adopted from https://forgejo.org/docs/v1.20/user/actions/
## attempting to make artifacts in CI
```
jobs:
upload-many:
runs-on: docker
steps:
- run: mkdir -p artifacts
- run: touch artifacts/ONE artifacts/TWO
- uses: actions/upload-artifact@v3
with:
name: many-artifacts
path: artifacts/
```