Skip to content

Commit 0ed6000

Browse files
committed
Fix build
1 parent d0580c6 commit 0ed6000

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232
- name: Install Rust toolchain
3333
uses: dtolnay/rust-toolchain@stable
3434
- name: Build - General
35-
if: ${{ matrix.cross == general }}
35+
if: ${{ matrix.cross == 'general' }}
3636
run: |
3737
rustup target add ${{ matrix.target }}
3838
cargo build --release --target ${{ matrix.target }} --target-dir target/${{ matrix.platform }}
3939
- name: Build - musl
40-
if: ${{ matrix.cross == musl }}
40+
if: ${{ matrix.cross == 'musl' }}
4141
run: |
4242
cargo install cross
4343
cross build --release --target ${{ matrix.target }} --target-dir target/${{ matrix.platform }}
4444
- name: Build - aarch64
45-
if: ${{ matrix.cross == aarch64 }}
45+
if: ${{ matrix.cross == 'aarch64' }}
4646
env:
4747
CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc
4848
CXX_aarch64_unknown_linux_gnu: aarch64-linux-gnu-g++

0 commit comments

Comments
 (0)