Skip to content

Commit

Permalink
add script to create releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Dec 11, 2017
1 parent c8618c0 commit ca7a841
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/github-clone-all
/github-clone-all.exe
/env.sh
/release
14 changes: 14 additions & 0 deletions scripts/make-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#! /bin/bash

set -e

rm -rf release
gox -verbose
mkdir -p release
mv github-clone-all_* release/
cd release
for bin in *; do
mv "$bin" github-clone-all
zip "${bin}.zip" github-clone-all
rm github-clone-all
done

0 comments on commit ca7a841

Please sign in to comment.