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 dcf0f54 commit 1cbf139Copy full SHA for 1cbf139
.github/workflows/release.yaml
@@ -58,14 +58,10 @@ jobs:
58
runs-on: ubuntu-latest
59
needs: deployment
60
steps:
61
- - name: Checkout latest code
62
- uses: actions/checkout@v4
63
-
64
- - name: Add tag and push to the repository
65
- run: |
66
- git config user.name "API Team"
67
- git config user.email "[email protected]"
68
69
- git tag ${{ inputs.releaseVersion }}
70
- git push origin ${{ inputs.releaseVersion }}
71
+ - name: Create GitHub Release
+ uses: softprops/action-gh-release@v2
+ with:
+ tag_name: ${{ inputs.releaseVersion }}
+ prerelease: false
+ draft: false
+ generate_release_notes: true
0 commit comments