From 7c3ca2246656a1eb81e86aa10d2496906bac6150 Mon Sep 17 00:00:00 2001 From: Jean Burellier Date: Wed, 17 Dec 2025 19:55:55 +0100 Subject: [PATCH] chore(ci): npm-publish via reusable workflows --- .github/workflows/npm-publish.yml | 14 ++++++++++++++ 1 file changed, 14 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..8bc47b4 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,14 @@ +name: Publish package to npm +on: + release: + types: [created] + +permissions: + id-token: write + contents: read + +jobs: + publish: + uses: expressjs/ci-workflows/.github/workflows/release.yml@main + secrets: + NPM_PUBLISH: ${{ secrets.NPM_PUBLISH }}