mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
25 lines
586 B
Bash
Executable file
25 lines
586 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ `git status --porcelain` ]]; then
|
|
echo 'ERROR: Please commit all changes before tagging a new version.'
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$1" ]; then
|
|
echo 'ERROR: You must supply a version number.'
|
|
exit 1
|
|
fi
|
|
|
|
TAG=$1
|
|
echo $TAG > .version
|
|
cd ./resources/assets
|
|
git -c color.ui=always tag $TAG
|
|
git -c color.ui=always push --tags
|
|
|
|
cd ../..
|
|
git -c color.ui=always add .
|
|
git -c color.ui=always commit -m "chore: bump version to ${TAG}"
|
|
git -c color.ui=always push
|
|
git -c color.ui=always tag $TAG
|
|
git -c color.ui=always tag latest -f
|
|
git -c color.ui=always push --tags -f
|