Skip to content

Commit

Permalink
fix: amd64 arch to X64 (#2580)
Browse files Browse the repository at this point in the history
  • Loading branch information
derrik-fleming authored Dec 24, 2024
1 parent 9c7f103 commit e6b5062
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/container/host_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ func (*HostEnvironment) JoinPathVariable(paths ...string) string {
// https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context
func goArchToActionArch(arch string) string {
archMapper := map[string]string{
"amd64": "X64",
"x86_64": "X64",
"386": "X86",
"aarch64": "ARM64",
Expand Down

0 comments on commit e6b5062

Please sign in to comment.