Test IPv4 networking #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test globbed artifacts with extension | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'releases/**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ # pguyot/arm-runner-action@HEAD | |
with: | |
copy_artifact_path: "*.ext" | |
commands: | | |
touch artifact1.ext | |
touch artifact2.ext | |
touch artifact3 | |
touch artifact4.ext2 | |
- name: Test globbed artifacts with extension were copied | |
run: | | |
test -f artifact1.ext | |
test -f artifact2.ext | |
- name: Test non-globbed artifact was not copied | |
run: | |