Unnamed repository; edit this file 'description' to name the repository.
Fix target check
Jonas Schievink 2022-08-01
parent caf8a64 · commit 64090ee
-rw-r--r--.github/workflows/release.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 56ee876cf1..4845168282 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -73,7 +73,7 @@ jobs:
node-version: 14.x
- name: Update apt repositories
- if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'gcc-arm-linux-gnueabihf'
+ if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf'
run: sudo apt-get update
- name: Install AArch64 target toolchain
@@ -81,7 +81,7 @@ jobs:
run: sudo apt-get install gcc-aarch64-linux-gnu
- name: Install ARM target toolchain
- if: matrix.target == 'gcc-arm-linux-gnueabihf'
+ if: matrix.target == 'arm-unknown-linux-gnueabihf'
run: sudo apt-get install gcc-arm-linux-gnueabihf
- name: Dist