diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dda3aef..8c51d58 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -27,13 +27,12 @@ jobs: # macOS GOOS=darwin GOARCH=amd64 go build -o dist/gosh-darwin-amd64 GOOS=darwin GOARCH=arm64 go build -o dist/gosh-darwin-arm64 + # Windows + GOOS=windows GOARCH=amd64 go build -o dist/gosh-windows-amd64.exe + GOOS=windows GOARCH=arm64 go build -o dist/gosh-windows-arm64.exe ls -lh dist/ - # Windows - # GOOS=windows GOARCH=amd64 go build -o dist/gosh-windows-amd64.exe - # GOOS=windows GOARCH=arm64 go build -o dist/gosh-windows-arm64.exe - - name: Upload binaries as artifacts uses: actions/upload-artifact@v4