Skip to content

chore: bump v10.1.0 (#683) #16

chore: bump v10.1.0 (#683)

chore: bump v10.1.0 (#683) #16

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
test:
uses: ./.github/workflows/test.yaml
build-and-release:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}