2022-02-21 19:37:10 +08:00
|
|
|
name: Release
|
2022-02-21 16:04:26 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2022-02-21 19:37:10 +08:00
|
|
|
- 'v*'
|
2022-02-21 16:04:26 +08:00
|
|
|
|
|
|
|
jobs:
|
2022-02-21 19:37:10 +08:00
|
|
|
release:
|
2022-02-21 16:04:26 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-02-21 19:37:10 +08:00
|
|
|
- uses: actions/checkout@v2
|
2022-02-21 16:04:26 +08:00
|
|
|
with:
|
2022-02-21 19:37:10 +08:00
|
|
|
fetch-depth: 0
|
2022-02-21 20:09:27 +08:00
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
2022-02-21 20:24:37 +08:00
|
|
|
- run: npm run github-release
|
2022-02-21 19:37:10 +08:00
|
|
|
env:
|
2022-02-21 20:04:18 +08:00
|
|
|
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.ACTIONS_DEPLOY_KEY}}
|