mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 08:00:56 -05:00
25 lines
471 B
YAML
25 lines
471 B
YAML
|
on: [push]
|
||
|
jobs:
|
||
|
upload:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- run: mkdir -p path/to/artifact
|
||
|
|
||
|
- run: echo hello > path/to/artifact/world.txt
|
||
|
|
||
|
- uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: my-artifact
|
||
|
path: path/to/artifact/world.txt
|
||
|
|
||
|
download:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- run: "! test -f world.txt"
|
||
|
|
||
|
- uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: my-artifact
|
||
|
|
||
|
- run: "test -f world.txt"
|