Skip to content

ci(release): configure branches #70

ci(release): configure branches

ci(release): configure branches #70

Workflow file for this run

on:
push:
branches:
- "*.x"
- master
- next
- beta
name: Release
jobs:
build:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}