Merge pull request #5715 from azchohfi/arm64

Added Arm64 compilation
This commit is contained in:
Mislav Marohnić 2022-06-20 19:24:14 +02:00 committed by GitHub
commit 456a0f1bb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -31,7 +31,7 @@ builds:
- <<: *build_defaults
id: windows
goos: [windows]
goarch: [386, amd64]
goarch: [386, amd64, arm64]
hooks:
post:
- ./script/sign-windows-executable.sh '{{ .Path }}'

View file

@ -860,6 +860,7 @@ func possibleDists() []string {
"windows-386",
"windows-amd64",
"windows-arm",
"windows-arm64",
}
}