Skip to content

Add more base images #275

Add more base images

Add more base images #275

name: Test multiple artifacts
on:
push:
branches:
- 'main'
- 'releases/**'
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./ # pguyot/arm-runner-action@HEAD
with:
copy_artifact_path: artifact1;artifact2
commands: |
touch artifact1
touch artifact2
- name: Test multiple artifacts were copied
run: |
test -f artifact1
test -f artifact2