2021-04-28 02:25:19 +00:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-11-01 22:43:59 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-04-28 02:25:19 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js
|
2022-11-01 22:44:05 +00:00
|
|
|
uses: actions/setup-node@v3
|
2021-04-28 02:25:19 +00:00
|
|
|
with:
|
2023-03-09 23:56:38 +00:00
|
|
|
node-version: 18
|
2021-04-28 02:25:19 +00:00
|
|
|
- name: Install dependencies
|
2021-06-09 00:19:49 +00:00
|
|
|
run: npm i
|
2021-04-28 02:25:19 +00:00
|
|
|
- name: Build module
|
|
|
|
run: npm run build
|
|
|
|
- name: Release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
run: npx semantic-release
|