We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b9aad commit 8fb3a07Copy full SHA for 8fb3a07
.github/workflows/release.yml
@@ -8,6 +8,7 @@ permissions:
8
contents: write
9
id-token: write
10
jobs:
11
+
12
changelog:
13
name: Generate changelog
14
runs-on: ubuntu-latest
@@ -31,7 +32,7 @@ changelog:
31
32
33
needs: [changelog]
34
- name: Create release as draft
- run: gh release create ${{ github.ref_name }} -F ${{ needs.changelog.outputs.release_body }}--draft
35
+ run: gh release create ${{ github.ref_name }} -F ${{ needs.changelog.outputs.release_body }} --draft
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
0 commit comments