Skip to content

Commit

Permalink
Merge pull request #63 from h-matsuo/patch-1
Browse files Browse the repository at this point in the history
Support for `aarch64` architecture (which is equivalent to `arm64`)
  • Loading branch information
shmokmt authored Nov 21, 2024
2 parents 8c5d7eb + 13dc903 commit 9b2b39f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ echo '::group::Preparing ...'
unameArch="$(uname -m)"
case "${unameArch}" in
x86*) arch=64bit;;
aarch64) arch=ARM64;;
arm64) arch=ARM64;;
*) echo "Unsupported architecture: ${unameArch}. Only AMD64 and ARM64 are supported by the action" && exit 1
esac
Expand Down

0 comments on commit 9b2b39f

Please sign in to comment.