Skip to content

Merge pull request #15 from UmbrellaDocs/bugfix-12 #4

Merge pull request #15 from UmbrellaDocs/bugfix-12

Merge pull request #15 from UmbrellaDocs/bugfix-12 #4

Workflow file for this run

# This workflow publishs the NPM package when a tag is pushed to the repository.
name: Publish on NPM
on:
push:
tags:
- '*'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm install && rm -rf node_modules
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}