mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
81 lines
2.0 KiB
Bash
Executable File
81 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e # Exit immediately if a command exits with a non-zero status.
|
|
|
|
# load .env.local if present
|
|
if [ -f .env.local ]; then
|
|
set -a # automatically export all variables
|
|
source .env.local
|
|
set +a # stop automatically exporting
|
|
fi
|
|
|
|
# save the current branch
|
|
current_branch=$(git branch --show-current)
|
|
|
|
# quit if the current branch is main
|
|
if [ "$current_branch" = "main" ]; then
|
|
printf "\e[41m\e[97m!!\e[0m Error: Can't release pre release from main branch\n"
|
|
exit 1
|
|
fi
|
|
|
|
# check if branch starts with "pre/"
|
|
if [[ $current_branch == pre/* ]]; then
|
|
suggested_tag="pre"
|
|
echo "You are in a branch starting with 'pre/'. Therefore, the suggested tag is 'pre'. You can override this."
|
|
read -p "Enter tag (suggested: \"pre\" - press Enter to confirm): " tag
|
|
tag=${tag:-pre}
|
|
else
|
|
# replace underscores in current_branch with hyphens
|
|
suggested_tag=$(echo $current_branch | sed 's/_/-/g')
|
|
|
|
# replace all non-alphanumeric characters except hyphens
|
|
suggested_tag=$(echo $suggested_tag | sed 's/[^a-zA-Z0-9-]/-/g')
|
|
|
|
# chop leading and trailing hyphens
|
|
suggested_tag=$(echo $suggested_tag | sed 's/^-//;s/-$//')
|
|
|
|
read -p "Enter tag (suggested: \"$suggested_tag\" - press Enter to confirm): " tag
|
|
tag=${tag:-$suggested_tag}
|
|
fi
|
|
|
|
echo "TAG IS $tag"
|
|
|
|
if [ -z "$tag" ]; then
|
|
printf "\e[41m\e[97m!!\e[0m Error: Tag cannot be empty\n"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Branch: $current_branch"
|
|
echo "Tag: $tag"
|
|
echo ""
|
|
echo "==============================="
|
|
echo "!! Releasing new pre release !!"
|
|
echo "==============================="
|
|
echo ""
|
|
|
|
echo "Continue? (y/n)"
|
|
read -r response
|
|
if [ "$response" != "y" ]; then
|
|
printf "\e[41m\e[97m!!\e[0m Error: Aborted"
|
|
exit 1
|
|
fi
|
|
|
|
# enter pre mode
|
|
pnpm changeset pre enter $tag
|
|
|
|
# select the packages to push an update for
|
|
pnpm changeset
|
|
|
|
# bump the version
|
|
pnpm changeset version
|
|
|
|
echo "Commit and run CI? (y/n)"
|
|
read -r response
|
|
if [ "$response" != "y" ]; then
|
|
printf "\e[41m\e[97m!!\e[0m Error: Aborted"
|
|
exit 1
|
|
fi
|
|
|
|
# Stage and commit
|
|
git add -A && git commit -m "Pre release $current_branch" && git push
|