Skip to content

Commit

Permalink
Fix GitHub release
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Dec 15, 2024
1 parent bf24916 commit 235454a
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,18 @@ jobs:
build/*.map \
build/config/sdkconfig.h
- name: Upload artifacts
- name: Upload firmware artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.environment }}
path: |
ugly-duckling-${{ matrix.environment }}.bin
debug-${{ matrix.environment }}.zip
name: firmware-${{ matrix.environment }}
path: ugly-duckling-${{ matrix.environment }}.bin
if-no-files-found: error

- name: Upload debug artifacts
uses: actions/upload-artifact@v4
with:
name: firmware-${{ matrix.environment }}
path: debug-${{ matrix.environment }}.zip
if-no-files-found: error

release:
Expand All @@ -81,5 +86,5 @@ jobs:
- name: Release
uses: AButler/[email protected]
with:
files: firmware-*/*
files: firmware-*/*;debug-*/*
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 235454a

Please sign in to comment.