We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce19f36 commit 8f203a5Copy full SHA for 8f203a5
.github/workflows/build+test+deploy.yml
@@ -71,9 +71,9 @@ jobs:
71
env:
72
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
73
run: |
74
- gh release create ${{ steps.changelog_reader.outputs.version }} \
75
- --title ${{ steps.changelog_reader.outputs.version }} \
76
- --notes ${{ steps.changelog_reader.outputs.changes }}
+ gh release create v${{ steps.changelog_reader.outputs.version }} \
+ --title v${{ steps.changelog_reader.outputs.version }} \
+ --notes "${{ steps.changelog_reader.outputs.changes }}"
77
- name: Upload binaries to release (if tag)
78
if: startsWith(github.ref, 'refs/tags/')
79
uses: svenstaro/upload-release-action@v1-release
0 commit comments