Update before release

This commit is contained in:
Brian Towles
2021-08-15 22:12:03 -05:00
parent 9f9b8ec40b
commit 21f4f54785
2 changed files with 6 additions and 18 deletions

View File

@@ -1,18 +0,0 @@
name: Publish Node.js Package
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}