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 cb5a922 commit ed8f899Copy full SHA for ed8f899
.github/workflows/deploy.yml
@@ -41,9 +41,8 @@ jobs:
41
- name: Publish package to PyPI
42
uses: pypa/[email protected]
43
44
- - name: Push tag
+ - name: GitHub Release
45
+ env:
46
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
run: |
- git config user.name "pytest bot"
- git config user.email "[email protected]"
48
- git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }}
49
- git push origin v${{ github.event.inputs.version }}
+ gh release create v${{ github.event.inputs.version }} --target=${{ github.ref_name }} --generate-notes
0 commit comments