Skip to content

Commit

Permalink
feat: improve release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause committed Jun 23, 2022
1 parent c5bd976 commit bcb17bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ set -o errexit -o pipefail -o noclobber -o nounset
version=$1

poetry version $version
git commit pyproject.yaml -m "feat: $version"
version=$(poetry version -s)
git commit pyproject.toml -m "feat: $version"
git tag $version
git push --tags
git push
Expand Down

0 comments on commit bcb17bf

Please sign in to comment.