From 07b2a7cc5cbe8ccb70d55040088a24b31e5c7f59 Mon Sep 17 00:00:00 2001 From: zradlicz Date: Thu, 17 Jul 2025 13:46:47 -0500 Subject: [PATCH 1/2] removed boron project and cleaned up artifacts for release --- .github/workflows/release-workflow.yaml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index d2eb0ed..cdd288a 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -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 @@ -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 }}" @@ -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 From 18d46ae85f5d56b3a74094acfef5ebb6a0956592 Mon Sep 17 00:00:00 2001 From: zradlicz Date: Thu, 17 Jul 2025 13:48:05 -0500 Subject: [PATCH 2/2] reverted manually to v37 to retry v38 release again --- src/FlightControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FlightControl.cpp b/src/FlightControl.cpp index bf9d57c..9f350e3 100644 --- a/src/FlightControl.cpp +++ b/src/FlightControl.cpp @@ -146,7 +146,7 @@ namespace LogModes { constexpr uint8_t NO_LOCAL = 3; //Same as standard log, but no attempt to log to SD card }; -PRODUCT_VERSION(39) +PRODUCT_VERSION(37) //global variables affected by configuration manager int backhaulCount;