From 9dcade5cb84e4aacaf439e7b32a81aeda70a6ebb Mon Sep 17 00:00:00 2001 From: spideystreet Date: Tue, 10 Mar 2026 17:33:25 +0100 Subject: [PATCH] ci: add npm publish workflow on GitHub release Triggers on published releases, runs lint + test + build, then publishes to npm with provenance. Requires NPM_TOKEN secret in repo settings. --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..33d1b30 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release + +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + registry-url: https://registry.npmjs.org + - run: npm ci + - run: npm run lint + - run: npm test + - run: npm run build + - run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}