36 lines
753 B
YAML
36 lines
753 B
YAML
name: Release CI
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Nodejs Env
|
|
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_VER }}
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Create Build
|
|
run: npm run build
|
|
|
|
- name: Release Package
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
|
|
run: npm semantic-release
|