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 3167a1d + c3529d4 commit a67c954Copy full SHA for a67c954
release.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+if [ ! -n "$1" ]; then
4
+ echo "Error:release version is blank!"
5
+ exit 1
6
+fi
7
8
+gox -osarch="darwin/amd64 linux/386 linux/amd64" -output="dist/{{.Dir}}_{{.OS}}_{{.Arch}}"
9
+ghr -u mritd -t $GITHUB_RELEASE_TOKEN -replace -recreate --debug $1 dist/
0 commit comments