Skip to content

Commit a89356c

Browse files
committed
chore: Update release workflow to include changelog categories
1 parent 5abc8d9 commit a89356c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- "v*.*.*"
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Install
13+
run: npm install
14+
- name: Build
15+
run: npm run build
16+
- name: Release
17+
uses: softprops/action-gh-release@v1
18+
if: startsWith(github.ref, 'refs/tags/')
19+
with:
20+
draft: true
21+
generate_release_notes: true
22+
files: dist/*.js

0 commit comments

Comments
 (0)