19 lines
382 B
YAML
19 lines
382 B
YAML
on: [push]
|
|
jobs:
|
|
upload-many:
|
|
runs-on: stackit-ubuntu-22
|
|
steps:
|
|
- run: mkdir -p artifacts
|
|
|
|
- run: touch artifacts/ONE artifacts/TWO
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: many-artifacts
|
|
path: artifacts/
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
- run: |
|
|
test -f many-artifacts/ONE
|
|
test -f many-artifacts/TWO
|