Add automatic VERSION setting for nightly builds

- Modified build.yml to accept optional version input parameter
- Modified nightly.yml to calculate VERSION from build date in format yymmddb
- VERSION is passed as PLATFORMIO_BUILD_FLAGS to override default in wled.h
- Other workflows (wled-ci.yml, release.yml) unchanged and will use default VERSION

Co-authored-by: softhack007 <91616163+softhack007@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-15 10:08:10 +00:00
parent 468301a2e5
commit 8c70acad65
2 changed files with 23 additions and 0 deletions

View File

@@ -3,6 +3,11 @@ name: PlatformIO CI
# Only included into other workflows
on:
workflow_call:
inputs:
version:
description: 'Build VERSION in format yymmddb (optional, for nightly builds)'
required: false
type: string
jobs:
@@ -62,6 +67,7 @@ jobs:
- name: Build firmware
env:
WLED_RELEASE: True
PLATFORMIO_BUILD_FLAGS: ${{ inputs.version && format('-D VERSION={0}', inputs.version) || '' }}
run: pio run -e ${{ matrix.environment }}
- name: Rename Bin
run: mv -v .pio/build/${{ matrix.environment }}/firmware.bin firmware-${{ matrix.environment }}.bin

View File

@@ -8,8 +8,25 @@ on:
workflow_dispatch:
jobs:
calculate_version:
name: Calculate VERSION
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Calculate VERSION
id: version
run: |
# VERSION format: yymmddb (b = daily build number, set to 1 for nightly)
VERSION=$(date -u +"%y%m%d")1
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Calculated VERSION: $VERSION"
wled_build:
needs: calculate_version
uses: ./.github/workflows/build.yml
with:
version: ${{ needs.calculate_version.outputs.version }}
nightly:
name: Deploy nightly
runs-on: ubuntu-latest