Skip to content

Commit 3153f4c

Browse files
authored
ci: Update atopile action to only upload box-emu and box-3-emu files and zip them (#75)
* ci: Update atopile action to only upload box-emu and box-3-emu files and zip them * fix path error * test fix atopile action * add name to atopile workflow * fix action
1 parent c818b4b commit 3153f4c

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

.github/workflows/atopile.yml

+31-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Electronics Build (Atopile)
2+
13
on:
24
pull_request:
35
branches: [main]
@@ -21,15 +23,40 @@ jobs:
2123
with:
2224
path: 'ecad/' # atopile project directory
2325

24-
- name: Upload Combined Artifacts
26+
- name: Zip up box-emu files in the build output directory
27+
run: |
28+
cd ecad
29+
# zip all files which match box-emu.* or box-emu-gerbers*.zip
30+
zip -j -r box-emu.zip build/box-emu.* build/box-emu-gerbers*.zip
31+
cd ..
32+
33+
- name: Zip up box-3-emu files in the build output directory
34+
run: |
35+
cd ecad
36+
# zip all files which match box-3-emu.* or box-3-emu-gerbers*.zip
37+
zip -j -r box-3-emu.zip build/box-3-emu.* build/box-3-emu-gerbers*.zip
38+
cd ..
39+
40+
- name: Upload Box-3-Emu
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: box-3-emu
44+
path: |
45+
ecad/build/box-3-emu.*
46+
ecad/build/box-3-emu-gerbers*.zip
47+
48+
- name: Upload Box-Emu
2549
uses: actions/upload-artifact@v4
2650
with:
27-
name: ecad_build
28-
path: 'ecad/build' # atopile build directory
51+
name: box-emu
52+
path: |
53+
ecad/build/box-emu.*
54+
ecad/build/box-emu-gerbers*.zip
2955
3056
- name: Attach files to release
3157
uses: softprops/action-gh-release@v2
3258
if: ${{ github.event.release && github.event.action == 'published' }}
3359
with:
3460
files: |
35-
ecad/build/*
61+
ecad/box-3-emu.zip
62+
ecad/box-emu.zip

0 commit comments

Comments
 (0)