Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(setup-argo): use amd64 as arch #217

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions actions/setup-argo/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ runs:

# runner.arch options: X86, X64, ARM, or ARM64.
# argo release: arm64, amd64, ppc64le, s390x.
# If it ain't arm64 or x86_64, it'll fall back to runner.arch.
# If it ain't arm64 or amd64, it'll fall back to runner.arch.
- if: runner.arch == 'X64'
shell: sh
run: echo "ARCH=x86_64" >> "$GITHUB_ENV"
run: echo "ARCH=amd64" >> "$GITHUB_ENV"

- if: runner.arch == 'ARM64'
shell: sh
Expand Down