diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-28 22:19:18 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-04-28 22:19:18 +0200 |
commit | 60c3c92db1270b14e4f9271a39da3c0e0cabb3dc (patch) | |
tree | c99aa3e3690592f0127af80af1b0751e7c0cc06c | |
parent | d7cf93ce346705df6a45e83e00ff72de9c2fce70 (diff) | |
download | rneovim-60c3c92db1270b14e4f9271a39da3c0e0cabb3dc.tar.gz rneovim-60c3c92db1270b14e4f9271a39da3c0e0cabb3dc.tar.bz2 rneovim-60c3c92db1270b14e4f9271a39da3c0e0cabb3dc.zip |
release.sh
-rwxr-xr-x | scripts/release.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/release.sh b/scripts/release.sh index 1645a10452..a51a6666f5 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -15,10 +15,6 @@ # - Tag the commit. # Create the "version bump" commit: # - CMakeLists.txt: Set NVIM_VERSION_PRERELEASE to "-dev" -# -# Manual steps: -# - CMakeLists.txt: Bump NVIM_VERSION_* as appropriate. -# - git push --follow-tags set -e set -u @@ -95,5 +91,9 @@ _do_bump_commit echo " Next steps: - Double-check NVIM_VERSION_* in CMakeLists.txt - - git push --follow-tags - - update website: index.html" + - Push the tag: + git push --follow-tags + - Update the 'stable' tag: + git push --force upstream HEAD^:refs/tags/stable + git fetch --tags + - Update website: index.html" |