Skip to content

Commit e71aee7

Browse files
authored
Merge pull request #38 from RTGS-Lab/bug/failure-to-upload
Bugfix to fix uploading a b5som bin to a boron project
2 parents 7e23825 + f78ec55 commit e71aee7

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release-workflow.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ jobs:
125125
uses: actions/upload-artifact@v4
126126
with:
127127
name: ${{ matrix.platform }}-versioned-firmware
128-
path: |
129-
firmware-${{ matrix.platform }}-*.bin
130-
debug-objects-${{ matrix.platform }}.tar.gz
128+
path: firmware-${{ matrix.platform }}-*.bin
131129

132130
create-release:
133131
name: Create GitHub Release
@@ -152,14 +150,14 @@ jobs:
152150

153151
- name: Prepare release artifacts
154152
run: |
155-
find ./release-files -name "*.bin" -o -name "*.tar.gz" | head -10
153+
find ./release-files -name "*.bin" | head -10
156154
ls -la ./release-files/
157155
158156
- name: Create GitHub release
159157
id: release
160158
uses: ncipollo/release-action@v1
161159
with:
162-
artifacts: ./release-files/**/*
160+
artifacts: ./release-files/**/*.bin
163161
generateReleaseNotes: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.release_notes == '' }}
164162
body: ${{ github.event.inputs.release_notes }}
165163
name: "Firmware v${{ needs.release.outputs.firmware-version }}"
@@ -238,8 +236,8 @@ jobs:
238236
product_id_secret: "PARTICLE_STELLENBOSCH_PRODUCT_ID"
239237
- name: "Runk Lab (B5 SoM)"
240238
product_id_secret: "PARTICLE_RUNCK_LAB_B5SOM_PRODUCT_ID"
241-
- name: "LCCMR Irrigation Sensing"
242-
product_id_secret: "PARTICLE_LCCMR_IRRIGATION_SENSING_PRODUCT_ID"
239+
#- name: "LCCMR Irrigation Sensing"
240+
#product_id_secret: "PARTICLE_LCCMR_IRRIGATION_SENSING_PRODUCT_ID"
243241
steps:
244242
- name: Checkout code
245243
uses: actions/checkout@v4

0 commit comments

Comments
 (0)