Skip to content

0.0.10

0.0.10 #14

Workflow file for this run

name: Release npm package
on:
release:
types: [published]
push:
branches:
- main
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: 'npm'
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci
- name: Publish 🚀
shell: bash
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}