From 9ab0b800afb83c57ce38ec79c9426ccc7983c0e1 Mon Sep 17 00:00:00 2001 From: Jean Burellier Date: Tue, 16 Dec 2025 18:02:23 +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 }}