add script to release binaries for all platforms

This commit is contained in:
rhysd 2017-12-25 17:04:55 +09:00
parent 36aa168a14
commit d3edf54df9
2 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/selfupdate-example
/release

View File

@ -0,0 +1,21 @@
#! /bin/bash
set -e
if [ ! -d .git ]; then
echo 'Run this script from root of repository' 1>&2
exit 1
fi
command=selfupdate-example
rm -rf release
gox -verbose ./cmd/$command
mkdir -p release
mv selfupdate-example_* release/
cd release
for bin in *; do
mv "$bin" "$command"
zip "${bin}.zip" "$command"
rm "$command"
done