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 f8971fb commit 1e227eaCopy full SHA for 1e227ea
.github/workflows/release.yml
@@ -50,3 +50,19 @@ jobs:
50
51
- name: Publish to PyPI
52
run: poetry publish --skip-existing
53
+
54
+ - name: Push tag to GitHub
55
+ run: |
56
+ git config user.name "Joshua Pritchard"
57
+ git config user.email "[email protected]"
58
+ git tag ${{ github.event.inputs.tag }}
59
+ git push origin ${{ github.event.inputs.tag }}
60
61
+ - name: Create GitHub Release
62
+ uses: softprops/action-gh-release@v1
63
+ with:
64
+ tag_name: ${{ github.event.inputs.tag }}
65
+ name: Release ${{ github.event.inputs.tag }}
66
+ generate_release_notes: true
67
+ env:
68
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments