Skip to content

Commit

Permalink
chore: Update release workflow to include changelog categories
Browse files Browse the repository at this point in the history
  • Loading branch information
ngocjohn committed Sep 5, 2024
1 parent 5abc8d9 commit a89356c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
generate_release_notes: true
files: dist/*.js

0 comments on commit a89356c

Please sign in to comment.