From 8a635d2df32e87a7415ed652143cf8c549b2fc38 Mon Sep 17 00:00:00 2001 From: Vojtech Simetka Date: Thu, 29 Apr 2021 13:46:53 +0200 Subject: [PATCH] ci: release to npmjs (#90) --- .github/workflows/publish_npmjs.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/publish_npmjs.yaml diff --git a/.github/workflows/publish_npmjs.yaml b/.github/workflows/publish_npmjs.yaml new file mode 100644 index 0000000..7dbc95c --- /dev/null +++ b/.github/workflows/publish_npmjs.yaml @@ -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}}