Skip to content

Bumped version to 0.15.0 #12

Bumped version to 0.15.0

Bumped version to 0.15.0 #12

Workflow file for this run

name: Publish new version
on:
push:
tags:
- v*
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: bash ./prepare-release.sh
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}