Skip to content

Commit ebf0481

Browse files
committed
Add release creation step
1 parent 919fa76 commit ebf0481

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,15 @@ jobs:
2222
- run: npm ci
2323
- run: npm run build
2424
- run: npm publish
25+
release:
26+
runs-on: ubuntu-latest
27+
needs: [publish-npm]
28+
permissions:
29+
contents: write
30+
steps:
31+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
32+
- name: Create Release
33+
id: create_release
34+
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090
35+
with:
36+
draft: true

0 commit comments

Comments
 (0)