From 2b76386641ebef60793293a1a6a8da826bb204fa Mon Sep 17 00:00:00 2001 From: Alexandre Date: Mon, 3 Feb 2025 14:03:11 +0100 Subject: [PATCH] Added the Windows version for testing --- .github/workflows/go.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5c8511c..1a0cb19 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -42,6 +42,10 @@ jobs: GOOS=linux GOARCH=amd64 go build -o dist/gosh-linux-amd64 GOOS=linux GOARCH=arm64 go build -o dist/gosh-linux-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 + # macOS GOOS=darwin GOARCH=amd64 go build -o dist/gosh-mac-amd64 GOOS=darwin GOARCH=arm64 go build -o dist/gosh-mac-arm64