Skip to content

chore(package.json): bump version from 0.5.3 to 0.5.4 to reflect new … #3

chore(package.json): bump version from 0.5.3 to 0.5.4 to reflect new …

chore(package.json): bump version from 0.5.3 to 0.5.4 to reflect new … #3

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Publish package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_KEY }}