From d87e1304b9b65b450040088b53c07c31819b5922 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Sat, 30 Nov 2024 20:46:04 +0100 Subject: [PATCH] fix: update installation command for ARM GCC in release workflow Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a95812a..41003f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,7 +123,7 @@ jobs: if: "runner.os == 'Linux'" run: | sudo apt install gcc-aarch64-linux-gnu - sudo apt install arm-none-eabi-gcc + sudo apt install gcc-arm-none-eabi - uses: swatinem/rust-cache@v2 with: key: ${{ join(matrix.targets, '-') }}