Skip to content

Commit

Permalink
Fix CI condition
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname committed Mar 11, 2024
1 parent a63b6a2 commit e9bc8fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
run: sudo apt-get update && sudo apt-get install gcc-multilib

- name: setup gcc
if: ${{ matrix.arch }} == arm
if: matrix.arch == 'arm'
run: sudo apt-get install gcc-arm-linux-gnueabi

- name: setup gcc
if: ${{ matrix.arch }} == arm64
if: matrix.arch == 'arm64'
run: sudo apt-get install gcc-aarch64-linux-gnu

- name: Build
Expand Down

0 comments on commit e9bc8fd

Please sign in to comment.