From c882c891d48bf81b672d53421083a58aaeba2bdb Mon Sep 17 00:00:00 2001 From: Alexandre Date: Mon, 3 Feb 2025 14:58:34 +0100 Subject: [PATCH] Removed the Windows Build because tests proved that Windows environement is really different --- .github/workflows/go.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1a0cb19..4c0a8b9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -38,15 +38,15 @@ jobs: run: | mkdir -p dist - # Linux + # Linux 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 + # 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 + # macOS GOOS=darwin GOARCH=amd64 go build -o dist/gosh-mac-amd64 GOOS=darwin GOARCH=arm64 go build -o dist/gosh-mac-arm64