Skip to content

chore: bump version to 5.0.1 (#73) #5

chore: bump version to 5.0.1 (#73)

chore: bump version to 5.0.1 (#73) #5

Workflow file for this run

name: Publish to NPM
on:
push:
tags:
- 'v*'
jobs:
Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build
- name: Publish
uses: JS-DevTools/npm-publish@v1
with:
access: public
token: ${{ secrets.NPM_TOKEN }}