Skip to content

0.0.2

0.0.2 #3

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
- dev
jobs:
build:
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: Publish release
run: npm publish --access public
if: github.ref == 'refs/heads/main'
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}