mirror of https://gitea.com/gitea/act_runner.git
fix: amd64 arch to X64 (#2580)
This commit is contained in:
parent
9c7f103bb3
commit
e6b5062e5c
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue