Skip to content

Commit 64090ee

Browse files
author
Jonas Schievink
committed
Fix target check
1 parent caf8a64 commit 64090ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ jobs:
7373
node-version: 14.x
7474

7575
- name: Update apt repositories
76-
if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'gcc-arm-linux-gnueabihf'
76+
if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf'
7777
run: sudo apt-get update
7878

7979
- name: Install AArch64 target toolchain
8080
if: matrix.target == 'aarch64-unknown-linux-gnu'
8181
run: sudo apt-get install gcc-aarch64-linux-gnu
8282

8383
- name: Install ARM target toolchain
84-
if: matrix.target == 'gcc-arm-linux-gnueabihf'
84+
if: matrix.target == 'arm-unknown-linux-gnueabihf'
8585
run: sudo apt-get install gcc-arm-linux-gnueabihf
8686

8787
- name: Dist

0 commit comments

Comments
 (0)