Skip to content

Commit fe7b9a8

Browse files
committed
chore: add bump script
1 parent 0ba07c2 commit fe7b9a8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/bump.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
TAG="$1"
3+
git-cliff --bump -t "$TAG" -o CHANGELOG.md
4+
uv version "$TAG"
5+
git add .
6+
git commit -m "chore(release): bump version to $TAG"
7+
git tag "$TAG"
8+
git push --atomic origin main "$TAG"

0 commit comments

Comments
 (0)