Update binary-name.sh to be consistent and use aarch64

This commit is contained in:
Mark McCaskey
2020-09-22 15:29:37 -07:00
parent c1056447f3
commit 9dc280f992
2 changed files with 2 additions and 2 deletions

View File

@@ -210,7 +210,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/wasmer-linux-aarch64/wasmer-linux-arm64.tar.gz
asset_path: artifacts/wasmer-linux-aarch64/wasmer-linux-aarch64.tar.gz
asset_name: wasmer-linux-aarch64.tar.gz
asset_content_type: application/gzip

View File

@@ -8,7 +8,7 @@ initArch() {
# If you modify this list, please also modify install.sh
case $ARCH in
amd64|x86_64) ARCH="amd64";;
aarch64) ARCH="arm64";;
aarch64) ARCH="aarch64";;
# i386) ARCH="386";;
*) echo "Architecture ${ARCH} is not supported by this installation script"; exit 1;;
esac