Skip to content

Support ubuntu 24.04 image #343

Support ubuntu 24.04 image

Support ubuntu 24.04 image #343

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: |