Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/release-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/FlightControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading