Skip to content

Commit 3df58f4

Browse files
Add win32 binaries to release script
1 parent 6464d80 commit 3df58f4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

publish-release.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ rm -rf dist
2323
mkdir -p dist
2424
GOOS=linux GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-linux-x86_64" ./grpcwebproxy
2525
GOOS=windows GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-win64.exe" ./grpcwebproxy
26+
GOOS=windows GOARCH=386 go build -o "dist/grpcwebproxy-$TAG-win32.exe" ./grpcwebproxy
2627
GOOS=darwin GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-osx-x86_64" ./grpcwebproxy
2728
for f in dist/*; do zip -9r "$f.zip" "$f"; done
2829
ls -l ./dist

0 commit comments

Comments
 (0)