Create Github Action for publishing to npm

This commit is contained in:
Luis R 2021-04-30 14:29:01 +02:00 committed by GitHub
parent 4b6002f686
commit b9e0e64390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.github/workflows/npm.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: npm
on:
release:
types: [created]
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 }}