Skip to content

chore: bump version to 0.9.0 #6

chore: bump version to 0.9.0

chore: bump version to 0.9.0 #6

name: Publish to NPM
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: yarn
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build the project
run: yarn build
- name: Publish the project
run: yarn publish --non-interactive --registry https://registry.npmjs.org --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}