From 821dfb2a9e6df0171e4f028c01ba055498ec94ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= <72651575+BreizhHardware@users.noreply.github.com> Date: Wed, 18 Feb 2026 10:40:28 +0000 Subject: [PATCH] fix: replace npm install with npm ci and add provenance flag to npm publish --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba61a79..e317753 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,8 @@ jobs: with: node-version: 18 registry-url: 'https://registry.npmjs.org' - - run: npm install - - run: npm publish --access public + - run: npm ci + - run: npm publish --provenance --access public release: needs: publish