]> git.lizzy.rs Git - micro.git/blobdiff - tools/nightly-release.sh
Merge pull request #1241 from Danmou/patch-1
[micro.git] / tools / nightly-release.sh
index 89910de2a3756e5d18a5e45833b52daded1c446a..372027a546d03333a31961c8c8435c0a8dcb1876 100755 (executable)
@@ -1,15 +1,20 @@
 # This script creates the nightly release on Github for micro
-# It assumes that the binaries are in the current directory
 # You must have the correct Github access token to run this script
 
+commitID=$(git rev-parse HEAD)
+info=$(github-release info -u zyedidia -r micro -t nightly)
+
+if [[ $info = *$commitID* ]]; then
+    echo "No new commits since last nightly"
+    exit 1
+fi
+
 echo "Deleting old release"
 github-release delete \
     --user zyedidia \
     --repo micro \
     --tag nightly
 
-commitID=$(git rev-parse HEAD)
-
 echo "Moving tag"
 git tag --force nightly $commitID
 git push --force --tags
@@ -23,6 +28,10 @@ github-release release \
     --description "Autogenerated nightly build of micro" \
     --pre-release
 
+echo "Cross compiling binaries"
+./cross-compile.sh $1
+mv ../binaries .
+
 echo "Uploading OSX binary"
 github-release upload \
     --user zyedidia \