We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee1ad3a commit 65fdfccCopy full SHA for 65fdfcc
1 file changed
.github/workflows/release.yml
@@ -69,3 +69,17 @@ jobs:
69
70
# Push the tag to the repository
71
git push origin $TAG_NAME
72
+
73
+ # Export tag name for next step
74
+ echo "tag_name=$TAG_NAME" >> $GITHUB_OUTPUT
75
+ id: create_tag
76
77
+ - name: Create GitHub Release
78
+ uses: softprops/action-gh-release@v2
79
+ with:
80
+ tag_name: ${{ steps.create_tag.outputs.tag_name }}
81
+ name: Release ${{ steps.create_tag.outputs.tag_name }}
82
+ draft: false
83
+ prerelease: false
84
+ env:
85
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments