From 762ecae154a87c7ee585f9c6911ce01158623a0d Mon Sep 17 00:00:00 2001 From: Jean Burellier Date: Tue, 16 Dec 2025 17:55:41 +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 00000000000..8bc47b439c5 --- /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 }}