fix artifacts location

This commit is contained in:
hathach 2023-05-26 18:58:21 +07:00
parent 4bd02fb04d
commit 59ad5c59df
No known key found for this signature in database
GPG Key ID: F5D50C6D51D17CBA
1 changed files with 3 additions and 5 deletions

View File

@ -76,11 +76,9 @@ jobs:
if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
working-directory: ${{github.workspace}}/cmake-build-ci-raspberry_pi_pico
run: |
tree -L 3
find device/ -name "*.elf"
find device/ -name "*.elf" -exec mv {} . \;
# find host/ -name "*.elf" -exec mv {} . \;
# find dual/ -name "*.elf" -exec mv {} . \;
find device/ -name "*.elf" -exec mv {} ../ \;
# find host/ -name "*.elf" -exec mv {} ../ \;
# find dual/ -name "*.elf" -exec mv {} ../ \;
- name: Upload Artifacts for rp2040
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'