From ce9a7ed40ebe405135813fc93933cc20012bed32 Mon Sep 17 00:00:00 2001 From: Lei Shi Date: Mon, 27 Nov 2023 11:28:49 +0100 Subject: [PATCH] build gcsim.exe as well --- .github/workflows/release-gcsim.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-gcsim.yml b/.github/workflows/release-gcsim.yml index 2e148da..e190a1d 100644 --- a/.github/workflows/release-gcsim.yml +++ b/.github/workflows/release-gcsim.yml @@ -57,6 +57,7 @@ jobs: run: | pushd gcsim/cmd/gcsim GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o gcsim + GOOS=windows GOARCH=amd64 go build -o gcsim.exe popd # Package the binary in a Python package structure @@ -64,6 +65,7 @@ jobs: run: | mkdir -p gcsim_pypi/bin cp gcsim/cmd/gcsim/gcsim gcsim_pypi/bin/ + cp gcsim/cmd/gcsim/gcsim.exe gcsim_pypi/bin/ # Set up Python and dependencies for PyPI upload - name: Set up Python