Skip to content

Bumped version to 9.4.1 #56

Bumped version to 9.4.1

Bumped version to 9.4.1 #56

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: npm run prepare-release
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}