We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e04f4b commit d08b4a5Copy full SHA for d08b4a5
.github/workflows/wled-ci.yml
@@ -64,12 +64,13 @@ jobs:
64
env:
65
WLED_RELEASE: True
66
run: pio run -e ${{ matrix.environment }}
67
+ - name: Rename Bin
68
+ run: mv .pio/build/${{ matrix.environment }}/firmware.bin firmware-${{ matrix.environment }}.bin
69
- uses: actions/upload-artifact@v4
70
with:
71
name: firmware-${{ matrix.environment }}
72
path: |
- build_output/firmware/*.bin
- build_output/firmware/*.gz
73
+ .pio/build/${{ matrix.environment }}/firmware.bin
74
75
if: startsWith(github.ref, 'refs/tags/')
76
0 commit comments