From 42d2851edf4b743f0a9338252ba72742d7399197 Mon Sep 17 00:00:00 2001 From: zradlicz Date: Thu, 17 Jul 2025 12:33:34 -0500 Subject: [PATCH 1/3] set auto version true for b5som as well --- .github/workflows/release-workflow.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index 5f9e78f..00b243f 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -67,7 +67,7 @@ jobs: uses: particle-iot/compile-action@9dbe1eb567c6268f1baa7458217d5d6e5553850d with: particle-platform-name: 'b5som' - auto-version: false + auto-version: ${{ github.event_name != 'workflow_dispatch' || github.event.inputs.version_increment != 'no' }} device-os-version: 6.2.1 - name: Upload BSOM artifacts From 7ec17c07eed32619b7deb4caf3203fdaae248e70 Mon Sep 17 00:00:00 2001 From: zradlicz Date: Thu, 17 Jul 2025 12:35:31 -0500 Subject: [PATCH 2/3] manually decrement to 37 to retry 38 release --- src/FlightControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FlightControl.cpp b/src/FlightControl.cpp index 3ecdc20..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(38) +PRODUCT_VERSION(37) //global variables affected by configuration manager int backhaulCount; From 10a5a4f6bc418755d24419f47e2e5a7b9116cfc1 Mon Sep 17 00:00:00 2001 From: zradlicz Date: Thu, 17 Jul 2025 12:41:37 -0500 Subject: [PATCH 3/3] added precision ag pilot project to release --- .github/workflows/release-workflow.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index 00b243f..d2eb0ed 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -189,6 +189,8 @@ jobs: product_id_secret: "PARTICLE_ROADSIDE_TURF_PRODUCT_ID" - name: "PepsiCo" product_id_secret: "PARTICLE_PEPSICO_PRODUCT_ID" + - name: "Precision Ag Pilot" + product_id_secret: "PARTICLE_PRECISION_AG_PILOT_PRODUCT_ID" steps: - name: Checkout code uses: actions/checkout@v4