From 2adba18159648b18e01516ade6f92234d298f39d Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 17 Jun 2020 00:48:17 +0000 Subject: [PATCH] Don't move nightly tag --- tools/nightly-release.sh | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/tools/nightly-release.sh b/tools/nightly-release.sh index 3a22c245..cb52b43e 100755 --- a/tools/nightly-release.sh +++ b/tools/nightly-release.sh @@ -1,20 +1,20 @@ # This script creates the nightly release on Github for micro # Must be run from inside the micro git repository -commitID=$(git rev-parse HEAD) -info=$(github-release info -u zyedidia -r micro -t nightly) +commitID=$(git rev-parse --short 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 +# if [[ $info = *$commitID* ]]; then +# echo "No new commits since last nightly" +# exit 1 +# fi go run remove-nightly-assets.go -echo "Moving tag" -hub push origin :refs/tags/nightly -git tag -f nightly $commitID -hub push --tags +# echo "Moving tag" +# hub push origin :refs/tags/nightly +# git tag -f nightly $commitID +# hub push --tags echo "Cross compiling binaries" ./cross-compile.sh $1 @@ -25,7 +25,8 @@ MESSAGE=$'Nightly build\n\nAutogenerated nightly build of micro' echo "Creating new release" hub release edit nightly \ --prerelease \ - --message "$MESSAGE. Assets uploaded on $(date)" \ + --draft=false \ + --message "$MESSAGE. Assets uploaded on $(date) for commit $commitID." \ --attach "binaries/micro-$1-osx.tar.gz" \ --attach "binaries/micro-$1-linux64.tar.gz" \ --attach "binaries/micro-$1-linux64-static.tar.gz" \