Skip to content

Commit ea7925e

Browse files
committed
chore: ports github workflow
1 parent 8beb352 commit ea7925e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
push:
3+
tags:
4+
- "v*"
5+
6+
name: Create Draft Release
7+
8+
jobs:
9+
create-draft-release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/create-release@v1
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
with:
17+
tag_name: ${{ github.ref }}
18+
release_name: ${{ github.ref }}
19+
draft: true
20+
prerelease: false

0 commit comments

Comments
 (0)