From 9857b7fe4a661845017d2b7c85e5c3633df46037 Mon Sep 17 00:00:00 2001 From: Alexandre1a <107309823+Alexandre1a@users.noreply.github.com> Date: Thu, 19 Mar 2026 11:50:16 +0100 Subject: [PATCH] Enable Windows builds in GitHub Actions workflow Added Windows build for reasons, may not work on Windows due to paths --- .github/workflows/go.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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