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 93fd552 commit a9c558bCopy full SHA for a9c558b
.github/workflows/cd.yml
@@ -28,7 +28,8 @@ jobs:
28
TWINE_USERNAME: ${{ secrets.POETRY_HTTP_BASIC_PYPI_USERNAME }}
29
TWINE_PASSWORD: ${{ secrets.POETRY_HTTP_BASIC_PYPI_PASSWORD }}
30
run: |
31
- git config user.name ${{ github.actor }}
+ git config user.name "${{ github.actor }}"
32
+ git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
33
git commit . -m "release: v${VERSION}"
34
git push origin main
35
git tag $VERSION
0 commit comments