Skip to content

chore(package.json): version 0.2.0 (#5) #2

chore(package.json): version 0.2.0 (#5)

chore(package.json): version 0.2.0 (#5) #2

Workflow file for this run

name: Publish NPM Package
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17.1
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Publish to NPM
run: npm publish --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}