From 122a4deb86e8b3664dbf89a08a75705d166f3381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20NEDJAR?= Date: Mon, 13 Apr 2026 06:42:05 +0200 Subject: [PATCH] ci: Disambiguate firmware job name in release workflow. Rename the firmware job to micropython-firmware so it does not clash with the daplink-firmware job introduced in #387. --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ebcd65f..e6964bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,8 +46,8 @@ jobs: HUSKY: "0" run: npx semantic-release - firmware: - name: Build and attach firmware + micropython-firmware: + name: Build and attach MicroPython firmware needs: release if: needs.release.outputs.new-release-published == 'true' runs-on: ubuntu-latest @@ -70,10 +70,10 @@ jobs: sudo apt-get update sudo apt-get install -y --no-install-recommends gcc-arm-none-eabi libnewlib-arm-none-eabi - - name: Build firmware + - name: Build MicroPython firmware run: make micropython-firmware - - name: Attach firmware to release + - name: Attach MicroPython firmware to release env: GH_TOKEN: ${{ steps.generate_token.outputs.token }} run: |