From 3fe9267e9757ffe910e4c48feddcbb281979da54 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 23 Mar 2026 03:32:28 +0000 Subject: [PATCH] fix(ci): use Node 24 for npm trusted publishing (requires npm >= 11.5.1) --- .github/workflows/publish.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 945ec5536..845b91f5a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: version: 10 - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 cache: pnpm registry-url: "https://registry.npmjs.org" - run: pnpm install --frozen-lockfile @@ -29,25 +29,15 @@ jobs: - name: Publish @hyperframes/core run: pnpm --filter @hyperframes/core publish --access public --provenance --no-git-checks - env: - NPM_CONFIG_PROVENANCE: "true" - name: Publish @hyperframes/engine run: pnpm --filter @hyperframes/engine publish --access public --provenance --no-git-checks - env: - NPM_CONFIG_PROVENANCE: "true" - name: Publish @hyperframes/producer run: pnpm --filter @hyperframes/producer publish --access public --provenance --no-git-checks - env: - NPM_CONFIG_PROVENANCE: "true" - name: Publish @hyperframes/studio run: pnpm --filter @hyperframes/studio publish --access public --provenance --no-git-checks - env: - NPM_CONFIG_PROVENANCE: "true" - name: Publish hyperframes (CLI) run: pnpm --filter hyperframes publish --access public --provenance --no-git-checks - env: - NPM_CONFIG_PROVENANCE: "true"