Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/release-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-versioned-firmware
path: |
firmware-${{ matrix.platform }}-*.bin
debug-objects-${{ matrix.platform }}.tar.gz
path: firmware-${{ matrix.platform }}-*.bin

create-release:
name: Create GitHub Release
Expand All @@ -152,14 +150,14 @@ jobs:

- name: Prepare release artifacts
run: |
find ./release-files -name "*.bin" -o -name "*.tar.gz" | head -10
find ./release-files -name "*.bin" | head -10
ls -la ./release-files/

- name: Create GitHub release
id: release
uses: ncipollo/release-action@v1
with:
artifacts: ./release-files/**/*
artifacts: ./release-files/**/*.bin
generateReleaseNotes: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.release_notes == '' }}
body: ${{ github.event.inputs.release_notes }}
name: "Firmware v${{ needs.release.outputs.firmware-version }}"
Expand Down Expand Up @@ -238,8 +236,8 @@ jobs:
product_id_secret: "PARTICLE_STELLENBOSCH_PRODUCT_ID"
- name: "Runk Lab (B5 SoM)"
product_id_secret: "PARTICLE_RUNCK_LAB_B5SOM_PRODUCT_ID"
- name: "LCCMR Irrigation Sensing"
product_id_secret: "PARTICLE_LCCMR_IRRIGATION_SENSING_PRODUCT_ID"
#- name: "LCCMR Irrigation Sensing"
#product_id_secret: "PARTICLE_LCCMR_IRRIGATION_SENSING_PRODUCT_ID"
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down