From 27ea4d8cf958de91cfdf01b9b5079dec75104116 Mon Sep 17 00:00:00 2001 From: Lucas McDonald Date: Wed, 22 Jul 2026 14:41:35 -0700 Subject: [PATCH 1/2] fix(release): drop --unsafe-perm from publish npm ci --- .github/workflows/prod-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod-release.yml b/.github/workflows/prod-release.yml index e1ef69b9e..c3e917697 100644 --- a/.github/workflows/prod-release.yml +++ b/.github/workflows/prod-release.yml @@ -109,7 +109,7 @@ jobs: # Ensure npm 11.5.1 or later is installed - name: Update npm run: npm install -g npm@latest - - run: npm ci --unsafe-perm + - run: npm ci - run: npm run build --if-present - run: npx lerna publish from-package --yes --dist-tag "$DIST_TAG" env: From 88ab127f67c510f36b44ad8cd6d5dddcfede7f6a Mon Sep 17 00:00:00 2001 From: Lucas McDonald Date: Wed, 22 Jul 2026 14:45:44 -0700 Subject: [PATCH 2/2] chore(release): remove stale npm version comment --- .github/workflows/prod-release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/prod-release.yml b/.github/workflows/prod-release.yml index c3e917697..4a4dcd3c4 100644 --- a/.github/workflows/prod-release.yml +++ b/.github/workflows/prod-release.yml @@ -106,7 +106,6 @@ jobs: node-version: 'lts/*' registry-url: 'https://registry.npmjs.org' - # Ensure npm 11.5.1 or later is installed - name: Update npm run: npm install -g npm@latest - run: npm ci