Skip to content

Publish to NPM

Publish to NPM #7

Workflow file for this run

name: Publish to NPM
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Publish to NPM
run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --no-git-tag-version
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_REF: ${{ github.ref }}