File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 23
23
config : config.kibot.yaml
24
24
# optional - prefix to output defined in config
25
25
dir : output
26
+ - name : Prepare release
27
+ run : |
28
+ mkdir -p zipped/
29
+ zip -n zip -9 -o -D zipped/rusty-probe-pcb.zip output/*.csv output/*.html output/*.png output/*.pdf output/*.zip
26
30
- name : Upload temporary artifacts for review
27
31
uses : actions/upload-artifact@v4
28
32
with :
29
- name : output
30
- path : output
33
+ name : rusty-probe-pcb
34
+ path : zipped/rusty-probe-pcb.zip
Original file line number Diff line number Diff line change 28
28
config : config.kibot.yaml
29
29
# optional - prefix to output defined in config
30
30
dir : output
31
+ - name : Prepare release
32
+ run : |
33
+ mkdir -p zipped/
34
+ zip -n zip -9 -o -D zipped/rusty-probe-pcb.zip output/*.csv output/*.html output/*.png output/*.pdf output/*.zip
31
35
- name : Release with Notes
32
36
uses : softprops/action-gh-release@v2
33
37
with :
36
40
prerelease : true
37
41
fail_on_unmatched_files : true
38
42
files : |
39
- output/**
43
+ zipped/rusty-probe-pcb.zip
40
44
env :
41
45
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 28
28
config : config.kibot.yaml
29
29
# optional - prefix to output defined in config
30
30
dir : output
31
+ - name : Prepare release
32
+ run : |
33
+ mkdir -p zipped/
34
+ zip -n zip -9 -o -D zipped/rusty-probe-pcb.zip output/*.csv output/*.html output/*.png output/*.pdf output/*.zip
31
35
- name : Release with Notes
32
36
uses : softprops/action-gh-release@v2
33
37
with :
37
41
make_latest : true
38
42
fail_on_unmatched_files : true
39
43
files : |
40
- output/**
44
+ zipped/rusty-probe-pcb.zip
41
45
env :
42
46
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments