From 878b46588b3bceadc38d9fcf3a279794b0effb40 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 27 Mar 2025 18:08:43 +0100 Subject: [PATCH] devops: add NPM publishing (#4) Requires the `NPM_TOKEN` secret to be set. --- .github/workflows/publish.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..5ceff88 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,18 @@ +name: Publish +on: + release: + types: [published] +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + registry-url: https://registry.npmjs.org/ + - run: npm ci + - run: npm run build + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}