From 6299e5483b90f1e361764dc384223635bae1477f Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sat, 19 Nov 2022 19:39:39 -0600 Subject: [PATCH] Input boards --- .github/workflows/build_nrf52.yml | 4 ++-- .github/workflows/build_rpi2040.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_nrf52.yml b/.github/workflows/build_nrf52.yml index da279a5de..cdf43c22e 100644 --- a/.github/workflows/build_nrf52.yml +++ b/.github/workflows/build_nrf52.yml @@ -17,7 +17,7 @@ jobs: uses: ./.github/actions/setup-base - name: Build NRF52 - run: bin/build-nrf52.sh ${{ matrix.board }} + run: bin/build-nrf52.sh ${{ inputs.board }} - name: Get release version string run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT @@ -26,7 +26,7 @@ jobs: - name: Store binaries as an artifact uses: actions/upload-artifact@v3 with: - name: firmware-${{ matrix.board }}-${{ steps.version.outputs.version }}.zip + name: firmware-${{ inputs.board }}-${{ steps.version.outputs.version }}.zip path: | release/*.uf2 release/*.elf diff --git a/.github/workflows/build_rpi2040.yml b/.github/workflows/build_rpi2040.yml index 608918b95..fb7e3db5b 100644 --- a/.github/workflows/build_rpi2040.yml +++ b/.github/workflows/build_rpi2040.yml @@ -17,7 +17,7 @@ jobs: uses: ./.github/actions/setup-base - name: Build Raspberry Pi 2040 - run: ./bin/build-rpi2040.sh ${{ matrix.board }} + run: ./bin/build-rpi2040.sh ${{ inputs.board }} - name: Get release version string run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT @@ -26,7 +26,7 @@ jobs: - name: Store binaries as an artifact uses: actions/upload-artifact@v3 with: - name: firmware-${{ matrix.board }}-${{ steps.version.outputs.version }}.zip + name: firmware-${{ inputs.board }}-${{ steps.version.outputs.version }}.zip path: | release/*.uf2 release/*.elf \ No newline at end of file