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 8a9866c commit e100ab3Copy full SHA for e100ab3
.github/workflows/ci.yml
@@ -85,6 +85,11 @@ jobs:
85
- name: Install Dependencies
86
run: poetry install
87
shell: bash
88
+ - name: Configure Git for authentication
89
+ run: |
90
+ git config --global user.name "GitHub Actions"
91
+ git config --global user.email "[email protected]"
92
+ git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}
93
94
- name: Python Semantic Release
95
id: release
0 commit comments