2021-03-23 06:19:01 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Description: This is a script to make the release process easier
|
|
|
|
# Run it with `yarn release:prep` and it will do the following:
|
2021-04-20 03:51:33 +07:00
|
|
|
# 1. Check that you have gh installed and that you're signed in
|
2021-03-23 06:19:01 +07:00
|
|
|
# 2. Update the version of code-server (package.json, docs, etc.)
|
|
|
|
# 3. Update the code coverage badge in the README
|
2021-03-24 00:52:35 +07:00
|
|
|
# 4. Open a draft PR using the release_template.md and view in browser
|
2021-03-25 06:35:55 +07:00
|
|
|
# If you want to perform a dry run of this script run DRY_RUN=1 yarn release:prep
|
2021-03-23 06:19:01 +07:00
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
2021-03-24 01:26:05 +07:00
|
|
|
if [ "${DRY_RUN-}" = 1 ]; then
|
|
|
|
echo "Performing a dry run..."
|
|
|
|
CMD="echo"
|
|
|
|
else
|
|
|
|
CMD=''
|
|
|
|
fi
|
|
|
|
|
2021-03-23 06:19:01 +07:00
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
2021-04-20 03:51:33 +07:00
|
|
|
# Check that gh is installed
|
2021-06-28 23:36:55 +07:00
|
|
|
if ! command -v gh &> /dev/null; then
|
2021-04-20 03:51:33 +07:00
|
|
|
echo "gh could not be found."
|
2021-03-23 06:19:01 +07:00
|
|
|
echo "We use this with the release-github-draft.sh and release-github-assets.sh scripts."
|
2021-04-20 03:51:33 +07:00
|
|
|
echo -e "See docs here: https://github.com/cli/cli#installation"
|
2021-03-23 06:19:01 +07:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check that they have jq installed
|
2021-06-28 23:36:55 +07:00
|
|
|
if ! command -v jq &> /dev/null; then
|
2021-03-23 06:19:01 +07:00
|
|
|
echo "jq could not be found."
|
|
|
|
echo "We use this to parse the package.json and grab the current version of code-server."
|
|
|
|
echo -e "See docs here: https://stedolan.github.io/jq/download/"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check that they have rg installed
|
2021-06-28 23:36:55 +07:00
|
|
|
if ! command -v rg &> /dev/null; then
|
2021-03-23 06:19:01 +07:00
|
|
|
echo "rg could not be found."
|
|
|
|
echo "We use this when updating files across the codebase."
|
|
|
|
echo -e "See docs here: https://github.com/BurntSushi/ripgrep#installation"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check that they have node installed
|
2021-06-28 23:36:55 +07:00
|
|
|
if ! command -v node &> /dev/null; then
|
2021-03-23 06:19:01 +07:00
|
|
|
echo "node could not be found."
|
|
|
|
echo "That's surprising..."
|
|
|
|
echo "We use it in this script for getting the package.json version"
|
|
|
|
echo -e "See docs here: https://nodejs.org/en/download/"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-04-20 03:51:33 +07:00
|
|
|
# Check that gh is authenticated
|
2021-06-28 23:36:55 +07:00
|
|
|
if ! gh auth status -h github.com &> /dev/null; then
|
2021-04-20 03:51:33 +07:00
|
|
|
echo "gh isn't authenticated to github.com."
|
|
|
|
echo "This is needed for our scripts that use gh."
|
|
|
|
echo -e "See docs regarding authentication: https://cli.github.com/manual/gh_auth_login"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-04-09 01:18:20 +07:00
|
|
|
# Note: we need to set upstream as well or the gh pr create step will fail
|
|
|
|
# See: https://github.com/cli/cli/issues/575
|
|
|
|
CURRENT_BRANCH=$(git branch | grep '\*' | cut -d' ' -f2-)
|
|
|
|
if [[ -z $(git config "branch.${CURRENT_BRANCH}.remote") ]]; then
|
|
|
|
echo "Doesn't look like you've pushed this branch to remote"
|
|
|
|
# Note: we need to set upstream as well or the gh pr create step will fail
|
|
|
|
# See: https://github.com/cli/cli/issues/575
|
|
|
|
echo "Please set the upstream and then run the script"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-03-23 06:19:01 +07:00
|
|
|
# credit to jakwuh for this solution
|
|
|
|
# https://gist.github.com/DarrenN/8c6a5b969481725a4413#gistcomment-1971123
|
|
|
|
CODE_SERVER_CURRENT_VERSION=$(node -pe "require('./package.json').version")
|
|
|
|
# Ask which version we should update to
|
|
|
|
# In the future, we'll automate this and determine the latest version automatically
|
|
|
|
echo "Current version: ${CODE_SERVER_CURRENT_VERSION}"
|
|
|
|
# The $'\n' adds a line break. See: https://stackoverflow.com/a/39581815/3015595
|
|
|
|
read -r -p "What version of code-server do you want to update to?"$'\n' CODE_SERVER_VERSION_TO_UPDATE
|
|
|
|
|
|
|
|
echo -e "Great! We'll prep a PR for updating to $CODE_SERVER_VERSION_TO_UPDATE\n"
|
2021-05-12 05:28:56 +07:00
|
|
|
$CMD rg -g '!yarn.lock' -g '!*.svg' -g '!CHANGELOG.md' --files-with-matches --fixed-strings "${CODE_SERVER_CURRENT_VERSION}" | $CMD xargs sd "$CODE_SERVER_CURRENT_VERSION" "$CODE_SERVER_VERSION_TO_UPDATE"
|
2021-03-23 06:19:01 +07:00
|
|
|
|
2021-03-25 06:35:55 +07:00
|
|
|
$CMD git commit -am "chore(release): bump version to $CODE_SERVER_VERSION_TO_UPDATE"
|
2021-03-23 06:19:01 +07:00
|
|
|
|
2021-03-24 01:26:05 +07:00
|
|
|
# This runs from the root so that's why we use this path vs. ../../
|
|
|
|
RELEASE_TEMPLATE_STRING=$(cat ./.github/PULL_REQUEST_TEMPLATE/release_template.md)
|
2021-03-24 00:52:35 +07:00
|
|
|
|
2021-03-24 01:26:05 +07:00
|
|
|
echo -e "\nOpening a draft PR on GitHub"
|
2021-03-23 06:19:01 +07:00
|
|
|
# To read about these flags, visit the docs: https://cli.github.com/manual/gh_pr_create
|
2021-05-22 06:08:46 +07:00
|
|
|
$CMD gh pr create --base main --title "release: $CODE_SERVER_VERSION_TO_UPDATE" --body "$RELEASE_TEMPLATE_STRING" --reviewer @cdr/code-server-reviewers --repo cdr/code-server --draft --assignee "@me"
|
2021-03-23 06:19:01 +07:00
|
|
|
|
2021-03-24 00:52:35 +07:00
|
|
|
# Open PR in browser
|
2021-03-24 01:26:05 +07:00
|
|
|
$CMD gh pr view --web
|
2021-03-23 06:19:01 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|