summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-05-26 18:58:21 +0700
committerhathach <[email protected]>2023-05-26 18:58:21 +0700
commit59ad5c59dfe1d9dbef033a772d2d5c474c22c53e (patch)
treedcf430783c2598c330e8c87d99f76bd3aada7d39 /.github
parent4bd02fb04d52dbd1c2e0f1fe8b18afbd299e46cd (diff)
fix artifacts location
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake_arm.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/cmake_arm.yml b/.github/workflows/cmake_arm.yml
index ed00ee4dc..ccca0c9be 100644
--- a/.github/workflows/cmake_arm.yml
+++ b/.github/workflows/cmake_arm.yml
@@ -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'