Skip to content

Commit

Permalink
added git config
Browse files Browse the repository at this point in the history
  • Loading branch information
paulvxx committed Feb 11, 2024
1 parent 90a1641 commit f17a211
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip uninstall bump2version -y || true # Ignore errors if not installed
pip install bumpversion build twine
- name: Configure Git user
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Bump patch version
run: bumpversion --verbose patch

Expand Down

0 comments on commit f17a211

Please sign in to comment.