fix to Windows only
Some checks failed
build-binaries / build (.exe, amd64, windows) (push) Failing after 5m20s
build-binaries / release (push) Has been skipped
build-binaries / publish-agent (push) Has been skipped

This commit is contained in:
jbergner
2025-10-29 11:40:41 +01:00
parent 0cfb579200
commit 26957af924

View File

@@ -24,16 +24,6 @@ jobs:
strategy:
matrix:
include:
- goos: linux
goarch: amd64
ext: ""
- goos: linux
goarch: arm64
ext: ""
- goos: linux
goarch: arm
goarm: "7"
ext: ""
- goos: windows
goarch: amd64
ext: ".exe"
@@ -186,7 +176,4 @@ jobs:
}
shopt -s nullglob
for f in dist/**/${PRODUCT}-linux-amd64.tar.gz; do publish linux amd64 "$f"; done
for f in dist/**/${PRODUCT}-linux-arm64.tar.gz; do publish linux arm64 "$f"; done
for f in dist/**/${PRODUCT}-linux-armv7.tar.gz; do publish linux armv7 "$f"; done
for f in dist/**/${PRODUCT}-windows-amd64.zip; do publish windows amd64 "$f"; done