From 2a673db3a5779a8e50672c74f3363f9944bd282b Mon Sep 17 00:00:00 2001 From: Daniel Maslowski Date: Wed, 1 Mar 2023 14:52:01 +0100 Subject: [PATCH] set up npm publish GitHub Action --- .github/workflows/npm-publish.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 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 00000000..be5a7afc --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,36 @@ +# This workflow will publish a package to npm when a release is created. +# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +# TODO: add tests or leave them out, add build steps...? + +name: npm publish + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm ci + # - run: npm test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org/ + - run: npm ci + # - run: npm run build + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}}