diff --git a/.goreleaser-windows.yml b/.goreleaser-windows.yml index da03241b5..fb4140b81 100644 --- a/.goreleaser-windows.yml +++ b/.goreleaser-windows.yml @@ -22,6 +22,7 @@ builds: goarch: - amd64 - 386 + - arm64 env: - CGO_ENABLED=1 main: ./cmd/skywire/ diff --git a/Makefile b/Makefile index 1e7748236..e95a5d785 100644 --- a/Makefile +++ b/Makefile @@ -262,6 +262,7 @@ github-release-windows: $(eval GITHUB_TAG=$(shell powershell git describe --abbrev=0 --tags)) gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-windows-amd64.zip gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-windows-386.zip + gh release upload --repo skycoin/skywire ${GITHUB_TAG} ./dist/skywire-${GITHUB_TAG}-windows-arm64.zip gh release download ${GITHUB_TAG} --repo skycoin/skywire --pattern 'checksums*' cat ./dist/checksums.txt >> ./checksums.txt gh release upload --repo skycoin/skywire ${GITHUB_TAG} --clobber ./checksums.txt