mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2025-01-07 03:17:05 +08:00
99ee8f9099
Also update RELEASE.md accordingly, and make the release.yml workflow match on `v*` tags.
63 lines
1.3 KiB
Bash
Executable File
63 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
BCYAN="\033[1;36m"
|
|
BYELLOW="\033[1;33m"
|
|
BGREEN="\033[1;32m"
|
|
BRED="\033[1;31m"
|
|
RED="\033[31m"
|
|
RESET="\033[0m"
|
|
|
|
function does_tag_exist {
|
|
git rev-parse --quiet --verify "refs/tags/$1" >/dev/null
|
|
}
|
|
|
|
function git_show_ref {
|
|
git show-ref --dereference $1 --abbrev 7
|
|
}
|
|
|
|
function git_show {
|
|
git show -s --format='%h %s' $1
|
|
}
|
|
|
|
VERSION=$(
|
|
cd ..
|
|
python3 -c "from invokeai.version import __version__ as version; print(version)"
|
|
)
|
|
PATCH=""
|
|
VERSION="v${VERSION}${PATCH}"
|
|
|
|
if does_tag_exist $VERSION; then
|
|
echo -e "${BCYAN}${VERSION}${RESET} already exists:"
|
|
git_show_ref tags/$VERSION
|
|
echo
|
|
fi
|
|
|
|
echo -e "${BGREEN}HEAD${RESET}:"
|
|
git_show
|
|
echo
|
|
|
|
echo -e "${BGREEN}git remote -v${RESET}:"
|
|
git remote -v
|
|
echo
|
|
|
|
echo -e -n "Create tags ${BCYAN}${VERSION}${RESET} @ ${BGREEN}HEAD${RESET}, ${RED}deleting existing tags on origin remote${RESET}? "
|
|
read -e -p 'y/n [n]: ' input
|
|
RESPONSE=${input:='n'}
|
|
if [ "$RESPONSE" == 'y' ]; then
|
|
echo
|
|
echo -e "Deleting ${BCYAN}${VERSION}${RESET} tag on origin remote..."
|
|
git push origin :refs/tags/$VERSION
|
|
|
|
echo -e "Tagging ${BGREEN}HEAD${RESET} with ${BCYAN}${VERSION}${RESET} on locally..."
|
|
if ! git tag -fa $VERSION; then
|
|
echo "Existing/invalid tag"
|
|
exit -1
|
|
fi
|
|
|
|
echo -e "Pushing updated tags to origin remote..."
|
|
git push origin --tags
|
|
fi
|
|
exit 0
|