Skip to content

Commit

Permalink
Added release script to archive libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Ruban committed Feb 7, 2018
1 parent 518c438 commit e31008a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ android-dist
ios-dist
.vagrant
.DS_Store
*.tar.gz
10 changes: 10 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
set -e

rm -rf ./dist;
./build_android.sh;
./build_ios.sh;

cd ./dist;

tar -czvf ../release.tar.gz ./

0 comments on commit e31008a

Please sign in to comment.