Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dzurikmiroslav committed Jul 17, 2024
1 parent 2472bfc commit 9e8e72a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:

- name: Rename file
shell: bash
run: mv ./build/esp32-evse.bin ./build/${{ matrix.platform }}-evse.bin
run: cp build/esp32-evse.bin ${{ matrix.platform }}-evse.bin

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: firmware-${{ matrix.platform }}
path: build/${{ matrix.platform }}-evse.bin
path: ${{ matrix.platform }}-evse.bin

- name: Upload release assets
if: github.event_name == 'release'
Expand All @@ -50,7 +50,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: build/${{ matrix.platform }}-evse.bin
asset_path: ${{ matrix.platform }}-evse.bin
asset_name: ${{ matrix.platform }}-evse.bin
asset_content_type: application/octet-stream

Expand Down

0 comments on commit 9e8e72a

Please sign in to comment.