ci: release to npmjs (#90)

This commit is contained in:
Vojtech Simetka
2021-04-29 13:46:53 +02:00
committed by GitHub
parent 0fb73f85b4
commit 8a635d2df3
+20
View File
@@ -0,0 +1,20 @@
# After new release is published on github, publish it to npmjs
name: Publish on npmjs
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}