Skip to content

Commit d08b4a5

Browse files
committed
Fix artifact upload
1 parent 1e04f4b commit d08b4a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/wled-ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,13 @@ jobs:
6464
env:
6565
WLED_RELEASE: True
6666
run: pio run -e ${{ matrix.environment }}
67+
- name: Rename Bin
68+
run: mv .pio/build/${{ matrix.environment }}/firmware.bin firmware-${{ matrix.environment }}.bin
6769
- uses: actions/upload-artifact@v4
6870
with:
6971
name: firmware-${{ matrix.environment }}
7072
path: |
71-
build_output/firmware/*.bin
72-
build_output/firmware/*.gz
73+
.pio/build/${{ matrix.environment }}/firmware.bin
7374
- uses: actions/upload-artifact@v4
7475
if: startsWith(github.ref, 'refs/tags/')
7576
with:

0 commit comments

Comments
 (0)