Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SamirMoustafa authored Mar 27, 2024
1 parent 10a5981 commit 5a5c865
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ jobs:
python-version: "3.10"
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel twine bump2version
- name: Verify .bumpversion.cfg exists
run: |
if [ -f ".bumpversion.cfg" ]; then
echo ".bumpversion.cfg exists."
else
echo ".bumpversion.cfg does not exist, exiting..."
exit 1
fi
- name: Bump version and tag
run: |
bump2version patch --config-file .bumpversion.cfg --verbose
Expand Down

0 comments on commit 5a5c865

Please sign in to comment.