Skip to content

Commit

Permalink
Add win32 binaries to release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jonny-improbable committed Dec 13, 2019
1 parent 6464d80 commit 3df58f4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions publish-release.sh
Expand Up @@ -23,6 +23,7 @@ rm -rf dist
mkdir -p dist
GOOS=linux GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-linux-x86_64" ./grpcwebproxy
GOOS=windows GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-win64.exe" ./grpcwebproxy
GOOS=windows GOARCH=386 go build -o "dist/grpcwebproxy-$TAG-win32.exe" ./grpcwebproxy
GOOS=darwin GOARCH=amd64 go build -o "dist/grpcwebproxy-$TAG-osx-x86_64" ./grpcwebproxy
for f in dist/*; do zip -9r "$f.zip" "$f"; done
ls -l ./dist
Expand Down

0 comments on commit 3df58f4

Please sign in to comment.