21 lines
552 B
YAML
21 lines
552 B
YAML
on:
|
|
push:
|
|
jobs:
|
|
checkout:
|
|
runs-on: docker
|
|
container:
|
|
image: git.hswro.org/fleg/actions-experiments:latest
|
|
steps:
|
|
- uses: https://codeberg.org/fleg/light-actions/checkout@test8
|
|
- run: cat README.md
|
|
upload-artifact:
|
|
runs-on: docker
|
|
container:
|
|
image: git.hswro.org/fleg/actions-experiments:latest
|
|
steps:
|
|
- run: echo "test passed" > test.txt
|
|
- uses: https://codeberg.org/fleg/light-actions/upload-artifact@test8
|
|
with:
|
|
path: test.txt
|
|
artifact-name: test-artifact
|