mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 07:50:56 -05:00
23 lines
425 B
YAML
23 lines
425 B
YAML
|
on: [push]
|
||
|
jobs:
|
||
|
upload:
|
||
|
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/
|
||
|
|
||
|
download:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- uses: actions/download-artifact@v3
|
||
|
|
||
|
- run: |
|
||
|
test -f many-artifacts/ONE
|
||
|
test -f many-artifacts/TWO
|