Skip to content

Commit 302ff60

Browse files
committed
fix
1 parent a6255d9 commit 302ff60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
# https://stackoverflow.com/questions/52996949/how-can-i-find-the-current-rust-compilers-default-llvm-target-triple
6161
echo "RUSTC_HOST_ARCH=$(rustc -vV | sed -n 's|host: ||p')" >> $GITHUB_ENV
62-
if [ "${RUSTC_HOST_ARCH:0:6}" == "x86_64" ]; then
62+
if [ "${RUSTC_HOST_ARCH}" == "x86_64-unknown-linux-gnu" ]; then
6363
echo "APK_ARCH=x86_64" >> $GITHUB_ENV
6464
else
6565
echo "APK_ARCH=aarch64" >> $GITHUB_ENV

0 commit comments

Comments
 (0)