From 8dd63183a430b9e72ef64dc1561c6ace2ccf3984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Thu, 4 Jun 2026 10:10:35 +0000 Subject: [PATCH] fix: disable pnpm minimumReleaseAge in CI pnpm 11 enables supply-chain policy by default, blocking our recently-published packages. Echo minimum-release-age=0 into .npmrc at CI time (local .npmrc is gitignored for auth tokens). --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4f7556b..10424c1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: with: node-version: 22 - - run: corepack enable && pnpm install + - run: corepack enable && echo 'minimum-release-age=0' > .npmrc && pnpm install - name: Build run: pnpm run build