Browse Source

chore: add npm publish ci workflow

master
Andrew Kaiser 4 years ago
committed by GitHub
parent
commit
916ce4b667
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      .github/workflows/npm-publish.yml

+ 19
- 0
.github/workflows/npm-publish.yml View File

@ -0,0 +1,19 @@
name: Npm Publish
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

Loading…
Cancel
Save