We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a874cfd commit 3d7b4a8Copy full SHA for 3d7b4a8
.github/workflows/release.yaml
@@ -37,13 +37,14 @@ jobs:
37
name: dist-files
38
path: dist/
39
40
- # Create a new GitHub release and upload the dist files
41
- - name: Create Release
+ # Step 6: Create Draft Release
+ - name: Create Draft Release
42
uses: ncipollo/release-action@v1
43
with:
44
artifacts: dist/*
45
token: ${{ secrets.GITHUB_TOKEN }}
46
- tag: r${{ github.run_number }}
47
- name: Release ${{ github.run_number }}
+ tag: v${{ env.version }}
+ name: Release v${{ env.version }}
48
body: |
49
Automatically generated release for commit: ${{ github.sha }}
50
+ draft: true
0 commit comments