Skip to content

Commit d043817

Browse files
authored
fix: add config github actions
1 parent 5b4b769 commit d043817

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,16 @@ jobs:
8585
- name: Install Dependencies
8686
run: poetry install
8787
shell: bash
88+
- name: Configure Git
89+
run: |
90+
git config user.name "github-actions"
91+
git config user.email "[email protected]"
92+
git remote set-url origin https://${{ secrets.GH_TOKEN }}@github.com/<your-username>/<your-repo>.git
8893
- name: Python Semantic Release
8994
id: release
9095
uses: python-semantic-release/[email protected]
9196
with:
9297
github_token: ${{ secrets.GH_TOKEN }}
93-
git_committer_name: "github-actions"
94-
git_committer_email: "[email protected]"
9598

9699
- name: Publish package distributions to PyPI
97100
uses: pypa/[email protected]

0 commit comments

Comments
 (0)