We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6255d9 commit 302ff60Copy full SHA for 302ff60
.github/workflows/release.yml
@@ -59,7 +59,7 @@ jobs:
59
run: |
60
# https://stackoverflow.com/questions/52996949/how-can-i-find-the-current-rust-compilers-default-llvm-target-triple
61
echo "RUSTC_HOST_ARCH=$(rustc -vV | sed -n 's|host: ||p')" >> $GITHUB_ENV
62
- if [ "${RUSTC_HOST_ARCH:0:6}" == "x86_64" ]; then
+ if [ "${RUSTC_HOST_ARCH}" == "x86_64-unknown-linux-gnu" ]; then
63
echo "APK_ARCH=x86_64" >> $GITHUB_ENV
64
else
65
echo "APK_ARCH=aarch64" >> $GITHUB_ENV
0 commit comments