|
1 | 1 | #/bin/bash
|
2 |
| -VERSION=$1 |
3 |
| -MAJOR_VERSION="v2.x" |
| 2 | +REPO="nvim-neo-tree/neo-tree.nvim" |
| 3 | +LAST_VERSION=$(curl --silent "https://api.github.com/repos/$REPO/releases/latest" | jq -r .tag_name) |
| 4 | +echo "LAST_VERSION=$LAST_VERSION" |
| 5 | +MAJOR=$(cut -d. -f1 <<<"$LAST_VERSION") |
| 6 | +MINOR=$(cut -d. -f2 <<<"$LAST_VERSION") |
| 7 | +echo |
| 8 | + |
| 9 | +RELEASE_BRANCH="${1:-v${MAJOR}.x}" |
| 10 | +echo "RELEASE_BRANCH=$RELEASE_BRANCH" |
| 11 | +NEXT_VERSION=$MAJOR.$((MINOR+1)) |
| 12 | +NEW_VERSION="${2:-${NEXT_VERSION}}" |
| 13 | +echo "NEW_VERSION=$NEW_VERSION" |
| 14 | +echo |
| 15 | + |
| 16 | +read -p "Are you sure you want to publish this release? " -n 1 -r |
| 17 | +echo # (optional) move to a new line |
| 18 | +if [[ ! $REPLY =~ ^[Yy]$ ]] |
| 19 | +then |
| 20 | + [[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 # handle exits from shell or function but don't exit interactive shell |
| 21 | +fi |
| 22 | + |
4 | 23 | git fetch
|
5 | 24 | git checkout main
|
6 | 25 | git pull
|
7 |
| -echo "Merging to ${MAJOR_VERSION}" |
8 |
| -git checkout $MAJOR_VERSION |
| 26 | +echo "Merging to ${RELEASE_BRANCH}" |
| 27 | +git checkout $RELEASE_BRANCH |
9 | 28 | git pull
|
10 | 29 | if git merge --ff-only origin/main; then
|
11 | 30 | git push
|
12 |
| - git tag -a $VERSION -m "Release ${VERSION}" |
13 |
| - git push origin $VERSION |
| 31 | + git tag -a $NEW_VERSION -m "Release ${NEW_VERSION}" |
| 32 | + git push origin $NEW_VERSION |
14 | 33 | echo "Creating Release"
|
15 |
| - gh release create $VERSION --title "Release $VERSION" --notes "" |
| 34 | + gh release create $NEW_VERSION --generate-notes |
16 | 35 | else
|
17 |
| - echo "RELEASE FAILED! Could not fast-forward release to $MAJOR_VERSION" |
| 36 | + echo "RELEASE FAILED! Could not fast-forward release to $RELEASE_BRANCH" |
18 | 37 | fi
|
19 | 38 | git checkout main
|
0 commit comments