We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b90a234 + 68e3178 commit ea2540bCopy full SHA for ea2540b
dist.sh
@@ -25,7 +25,8 @@ for os in windows linux darwin; do
25
fi
26
BUILD=$(mktemp -d ${TMPDIR:-/tmp}/oauth2_proxy.XXXXXX)
27
TARGET="oauth2_proxy-$version.$os-$arch.$goversion"
28
- GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build -o $BUILD/$TARGET/oauth2_proxy$EXT || exit 1
+ GOOS=$os GOARCH=$arch CGO_ENABLED=0 \
29
+ go build -ldflags="-s -w" -o $BUILD/$TARGET/oauth2_proxy$EXT || exit 1
30
pushd $BUILD
31
tar czvf $TARGET.tar.gz $TARGET
32
mv $TARGET.tar.gz $DIR/dist
version.go
@@ -1,3 +1,3 @@
1
package main
2
3
-const VERSION = "2.2.0"
+const VERSION = "2.2.1-alpha"
0 commit comments