-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Amazia Gur
authored and
Amazia Gur
committed
Nov 13, 2024
1 parent
6fc2309
commit d3e5ae0
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,9 +23,14 @@ jobs: | |
python -m pip install --upgrade pip | ||
pip install poetry | ||
- name: Configure Git user | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
- name: Update version for PyPI release | ||
run: | | ||
poetry version patch | ||
poetry version patch # Increment patch version (e.g., 0.1.0 -> 0.1.1) | ||
git commit -am "Bump version to $(poetry version -s)" | ||
git tag "v$(poetry version -s)" | ||
git push origin --tags | ||
|