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 dbeb7ca commit 65300b4Copy full SHA for 65300b4
1 file changed
.github/workflows/deploy.yml
@@ -43,9 +43,9 @@ jobs:
43
with:
44
attestations: true
45
46
- - name: Push tag
+ - name: GitHub Release
47
+ env:
48
+ GH_TOKEN: ${{ github.token }}
49
run: |
- git config user.name "pytest bot"
- git config user.email "pytestbot@gmail.com"
50
- git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }}
51
- git push origin v${{ github.event.inputs.version }}
+ gh release create v${{ github.event.inputs.version }} --target=${{ github.ref_name }} --title v${{ github.event.inputs.version }}
+ gh pr merge ${{ github.ref_name }} --merge
0 commit comments