18 lines
312 B
YAML
18 lines
312 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: echo All Good
|
|
upload-many:
|
|
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/
|
|
|