mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
feat: make tag command more colorful
This commit is contained in:
parent
a47f0c0c06
commit
3979d1d18c
1 changed files with 8 additions and 8 deletions
16
tag.sh
16
tag.sh
|
@ -13,13 +13,13 @@ fi
|
|||
TAG=$1
|
||||
echo $TAG > .version
|
||||
cd ./resources/assets
|
||||
git tag $TAG
|
||||
git push --tags
|
||||
git -c color.ui=always tag $TAG
|
||||
git -c color.ui=always push --tags
|
||||
|
||||
cd ../..
|
||||
git add .
|
||||
git commit -m "chore: bump version to ${TAG}"
|
||||
git push
|
||||
git tag $TAG
|
||||
git tag latest -f
|
||||
git push --tags -f
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue