about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonas Schievink <jonas.schievink@ferrous-systems.com>2022-08-01 15:22:02 +0200
committerJonas Schievink <jonas.schievink@ferrous-systems.com>2022-08-01 15:22:02 +0200
commit64090ee27cc630778fabd25a4d2ffd70329d62db (patch)
tree01fc9ed6b12e66990163dfb76380f2fa92ba381f
parentcaf8a6454a0ee4a045537cfdbe5ab859b3dc6b6d (diff)
downloadrust-64090ee27cc630778fabd25a4d2ffd70329d62db.tar.gz
rust-64090ee27cc630778fabd25a4d2ffd70329d62db.zip
Fix target check
-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 56ee876cf1f..4845168282e 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