From cd657e1bd827d4bf6f2fe9b63d1aecca8b0bc0b2 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 2 Dec 2025 16:20:52 +0100 Subject: [PATCH] Fix missing node modules release target Signed-off-by: Bryan Frimin --- .github/workflows/release.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 81270501b..481031962 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,6 +28,15 @@ jobs: with: go-version: "1.25" + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + cache: "npm" + + - name: Install dependencies + run: npm ci + - name: Install Cosign uses: sigstore/cosign-installer@v3