ci: replace lemon-font build with font-switcher build

Build firmware from the font-switcher branch instead of font-lemon.
The font-switcher build includes both Adafruit and Lemon fonts in one
binary with a runtime toggle in Settings > Display.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-20 09:42:09 +02:00
parent 6399df1f4a
commit e9b38fc559

View File

@@ -32,31 +32,31 @@ jobs:
name: wio-tracker-l1-firmwares name: wio-tracker-l1-firmwares
path: out path: out
build-lemon-font: build-font-switcher:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Clone Repo (font-experiments branch) - name: Clone Repo (font-switcher branch)
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
ref: font-lemon ref: font-switcher
- name: Setup Build Environment - name: Setup Build Environment
uses: ./.github/actions/setup-build-environment uses: ./.github/actions/setup-build-environment
- name: Build Lemon Font Firmwares - name: Build Font Switcher Firmwares
env: env:
FIRMWARE_VERSION: ${{ env.GIT_TAG_VERSION }}-lemon-font FIRMWARE_VERSION: ${{ env.GIT_TAG_VERSION }}-font-switcher
run: /usr/bin/env bash build.sh build-wio-tracker-l1-firmwares run: /usr/bin/env bash build.sh build-wio-tracker-l1-firmwares
- name: Upload Workflow Artifacts - name: Upload Workflow Artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: wio-tracker-l1-lemon-font-firmwares name: wio-tracker-l1-font-switcher-firmwares
path: out path: out
release: release:
needs: [build-standard, build-lemon-font] needs: [build-standard, build-font-switcher]
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
steps: steps:
@@ -70,10 +70,10 @@ jobs:
name: wio-tracker-l1-firmwares name: wio-tracker-l1-firmwares
path: out path: out
- name: Download Lemon Font Firmwares - name: Download Font Switcher Firmwares
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
name: wio-tracker-l1-lemon-font-firmwares name: wio-tracker-l1-font-switcher-firmwares
path: out path: out
- name: Create Release - name: Create Release