Skip to content

Commit 135ee35

Browse files
committed
Change zip command for development releases
1 parent 737c34e commit 135ee35

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/firmware.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: "🔥 Firmware Build"
22

33
on:
4+
workflow_dispatch:
5+
46
push:
57
tags:
68
- "v*.*.*"

tools/ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ ci_package_firmware_release() {
4949
}
5050

5151
ci_package_firmware_development() {
52-
(cd firmware && for i in *; do zip -r -j "firmware_${i%/}.zip" "$i"; done)
52+
(cd firmware && for i in *; do zip -r "firmware_${i%/}.zip" "$i"; done)
5353
}

0 commit comments

Comments
 (0)