We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effe37a commit 12ac8acCopy full SHA for 12ac8ac
.github/workflows/go.yml
@@ -22,7 +22,8 @@ jobs:
22
go-version: '1.20'
23
24
- run: go build -o bin/${{ github.event.repository.name }}_linux_x64 .
25
- - run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/${{ github.event.repository.name }}_x64.exe .
+ - run: CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o bin/${{ github.event.repository.name }}_win_x64.exe
26
+ - run: CGO_ENABLED=0 GOOS=windows GOARCH=arm64 go build -o bin/${{ github.event.repository.name }}_win_arm64.exe .
27
- run: CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o bin/${{ github.event.repository.name }}_darwin_x64 .
28
- run: CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o bin/${{ github.event.repository.name }}_darwin_arm64 .
29
0 commit comments