Skip to content

Merge branch 'v2' into v2-develop #80

Merge branch 'v2' into v2-develop

Merge branch 'v2' into v2-develop #80

Workflow file for this run

name: Release
on:
push:
branches:
- v2
- v2-develop
- alpha
workflow_dispatch:
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.5.0'
- name: Install Dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
run: npx semantic-release