try to make artifacts
This commit is contained in:
parent
3982dae79c
commit
f24b7e9acd
2 changed files with 31 additions and 0 deletions
|
@ -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/
|
||||||
|
|
||||||
|
|
19
README.md
19
README.md
|
@ -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/
|
||||||
|
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue