Skip to content

Commit

Permalink
fix(setup-argo): use amd64 as arch (#217)
Browse files Browse the repository at this point in the history
* fix(setup-argo): use amd64 as arch

* fix: comment
  • Loading branch information
Duologic authored Aug 15, 2024
1 parent 64a196a commit 7a0ba14
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 7a0ba14

Please sign in to comment.