chore: add release script

This commit is contained in:
Anthony Fu 2022-07-10 10:46:19 +08:00
parent 87419670fd
commit 108f55bbe8
1 changed files with 22 additions and 0 deletions

22
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}