Skip to content

Commit 665601c

Browse files
author
Matteo Crippa
committed
fix build script
1 parent 155735b commit 665601c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set Up Python
3333
uses: actions/setup-python@v3
3434
with:
35-
python-version: '3.9'
35+
python-version: "3.9"
3636

3737
- name: Install PlatformIO Core
3838
run: pip install --upgrade platformio
@@ -47,8 +47,8 @@ jobs:
4747
run: |
4848
mkdir -p artifacts
4949
find .pio/build -name "firmware.bin" -exec sh -c 'cp "{}" "artifacts/firmware_$(basename $(dirname {})).bin"' \;
50-
find .pio/build -name "bootloader.bin" -exec sh -c 'cp "{}" "artifacts/firmware_$(basename $(dirname {})).bin"' \;
51-
find .pio/build -name "partitions.bin" -exec sh -c 'cp "{}" "artifacts/firmware_$(basename $(dirname {})).bin"' \;
50+
find .pio/build -name "bootloader.bin" -exec sh -c 'cp "{}" "artifacts/bootloader_$(basename $(dirname {})).bin"' \;
51+
find .pio/build -name "partitions.bin" -exec sh -c 'cp "{}" "artifacts/partitions_$(basename $(dirname {})).bin"' \;
5252
working-directory: ${{ github.workspace }}
5353

5454
- name: Upload Artifacts

0 commit comments

Comments
 (0)