Skip to content

Commit 1a16ce8

Browse files
committed
Fix release workflow
1 parent 0422757 commit 1a16ce8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,16 @@ jobs:
3131
target: 'pkgs/'
3232
token: '${{ secrets.GITHUB_TOKEN }}'
3333
env:
34+
VERSION: ${{ inputs.version }}
35+
TAG: ${{ inputs.tag }}
36+
37+
- uses: actions/create-release@latest
38+
with:
39+
tag_name: $TAG
40+
release_name: v$VERSION
41+
draft: true
42+
prerelease: true
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3445
VERSION: ${{ inputs.version }}
3546
TAG: ${{ inputs.tag }}

0 commit comments

Comments
 (0)