We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b4b769 commit d043817Copy full SHA for d043817
.github/workflows/ci.yml
@@ -85,13 +85,16 @@ jobs:
85
- name: Install Dependencies
86
run: poetry install
87
shell: bash
88
+ - name: Configure Git
89
+ run: |
90
+ git config user.name "github-actions"
91
+ git config user.email "actions@users.noreply.github.com"
92
+ git remote set-url origin https://${{ secrets.GH_TOKEN }}@github.com/<your-username>/<your-repo>.git
93
- name: Python Semantic Release
94
id: release
95
uses: python-semantic-release/python-semantic-release@v9.14.0
96
with:
97
github_token: ${{ secrets.GH_TOKEN }}
- git_committer_name: "github-actions"
- git_committer_email: "actions@users.noreply.github.com"
98
99
- name: Publish package distributions to PyPI
100
uses: pypa/gh-action-pypi-publish@v1.12.2
0 commit comments