m20/.forgejo/workflows/demo.yaml
SvenK b177743f8a
All checks were successful
hello-world / demo-job (push) Successful in 3s
fixing CI ;)
2025-12-10 14:18:59 +01:00

20 lines
491 B
YAML

name: hello-world
on: push
jobs:
demo-job:
runs-on: docker
steps:
- name: my-step
run: echo "Hello World!"
- run: |
mkdir -p artifacts
echo hello > artifacts/one.txt
echo world > artifacts/two.txt
- uses: actions/upload-artifact@v3
with:
name: demo-artifacts
path: artifacts/
- uses: actions/upload-artifact@v3
with:
name: single-artifact
path: artifacts/one.txt