Skip to content

Commit 697285a

Browse files
committed
Fix CI/CD
1 parent 6198aa7 commit 697285a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci-cd.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ jobs:
4747
with:
4848
go-version: ${{ env.GOVERSION }}
4949
- name: Build for Windows
50-
run: GOOS=windows GOARCH=amd64 go build -o ${{ env.NAME }}-win64.exe .
50+
run: |
51+
set GOOS=windows
52+
set GOARCH=amd64
53+
go build -o ${{ env.NAME }}-win64.exe .
5154
- uses: actions/upload-artifact@v4
5255
with:
5356
name: windows-binaries

0 commit comments

Comments
 (0)