This commit is contained in:
Andras Schmelczer 2025-03-16 20:02:35 +00:00
commit 8a36be7d56
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 8 additions and 8 deletions

View file

@ -41,12 +41,12 @@ cd ..
cp plugin/manifest.json manifest.json # for BRAT, otherwise it wouldn't update cp plugin/manifest.json manifest.json # for BRAT, otherwise it wouldn't update
# Commit and tag # Commit and tag
git add . # git add .
TAG=$(node -p "require('./plugin/package.json').version") # TAG=$(node -p "require('./plugin/package.json').version")
git commit -m "Bump versions to $TAG" # git commit -m "Bump versions to $TAG"
git push # git push
echo "Tagging $TAG" # echo "Tagging $TAG"
git tag -a $TAG -m "Release $TAG" # git tag -a $TAG -m "Release $TAG"
git push origin $TAG # git push origin $TAG
echo "Done" echo "Done"