We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87d0191 commit e8c15abCopy full SHA for e8c15ab
1 file changed
.github/workflows/release.yml
@@ -128,6 +128,14 @@ jobs:
128
git tag -a "v${{ needs.check-release-label.outputs.version }}" -m "Release v${{ needs.check-release-label.outputs.version }}"
129
git push origin "v${{ needs.check-release-label.outputs.version }}"
130
131
+ - name: Create GitHub Release
132
+ env:
133
+ GH_TOKEN: ${{ github.token }}
134
+ run: |
135
+ gh release create "v${{ needs.check-release-label.outputs.version }}" \
136
+ --title "v${{ needs.check-release-label.outputs.version }}" \
137
+ --generate-notes
138
+
139
# Notify in case of a failure
140
- name: Send failure event to PostHog
141
if: ${{ failure() }}
0 commit comments