From c2c7efce5933dd1cd73618aa8a6bba2c2e399408 Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Thu, 23 Jul 2020 08:08:56 +0200 Subject: [PATCH] :construction_worker: Add npm publish workflow --- .github/workflows/npm-publish.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..8b152aa --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,19 @@ +name: Node.js Package + +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 publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} \ No newline at end of file