Skip to content

Commit

Permalink
fix archs for windows
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Hall <[email protected]>
  • Loading branch information
imjasonh committed Jun 10, 2024
1 parent 28d01c2 commit e9da943
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ runs:
arch="${{ runner.arch }}"
if [[ "${arch}" == "X64" ]]; then
arch="amd64"
if [[ "${os}" == "windows" ]]; then
arch="x86_64"
else
arch="amd64"
fi
elif [[ "${arch}" == "ARM64" ]]; then
arch="arm64"
fi
Expand Down

0 comments on commit e9da943

Please sign in to comment.