Skip to content

Merge pull request #167 from bovlb/patch-1 #19

Merge pull request #167 from bovlb/patch-1

Merge pull request #167 from bovlb/patch-1 #19

Workflow file for this run

name: Release workflow
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: npm
node-version: 18
- run: npm i
- run: npm run build
- run: npm run semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}