]> git.lizzy.rs Git - micro.git/blob - tools/update-nightly-tag.sh
Add template literal string highlighting to typescript (#2525)
[micro.git] / tools / update-nightly-tag.sh
1 commitID=$(git rev-parse --short HEAD)
2 echo "Moving tag"
3 hub push origin :refs/tags/nightly
4 git tag -f nightly $commitID
5 hub push --tags
6
7 MESSAGE=$'Nightly build\n\nAutogenerated nightly build of micro'
8
9 echo "Creating new release"
10 hub release create nightly \
11     --prerelease \
12     --draft=false \
13     --message "$MESSAGE."