Skip to content

Commit

Permalink
Fix syntax error release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
greymd committed Feb 15, 2024
1 parent 6faf7e3 commit 6602156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
rustup target add ${{ matrix.target }}
case ${{ matrix.target }} in
x86_64-unknown-linux-musl) CFLAGS="-fPIE" CC="musl-gcc -static" cargo build --verbose --features oniguruma --release --target ${{ matrix.target }} ;;
aarch64-unknown-linux-musl) CC="aarch64-linux-gnu-gcc -specs /usr/lib/x86_64-linux-musl/musl-gcc.specs" cargo build --verbose --features oniguruma --release --target ${{ matrix.target }}
aarch64-unknown-linux-musl) CC="aarch64-linux-gnu-gcc -specs /usr/lib/x86_64-linux-musl/musl-gcc.specs" cargo build --verbose --features oniguruma --release --target ${{ matrix.target }} ;;
*) cargo build --verbose --features oniguruma --release --target ${{ matrix.target }} ;;
esac
Expand Down

0 comments on commit 6602156

Please sign in to comment.