Skip to content

๐Ÿ—๏ธ Switch from yarn to npm #27

๐Ÿ—๏ธ Switch from yarn to npm

๐Ÿ—๏ธ Switch from yarn to npm #27

Workflow file for this run

name: Release package
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}