From a8323fe22ccd55fecf604e25d513d0671aec3e73 Mon Sep 17 00:00:00 2001 From: Chisanan232 Date: Fri, 29 May 2026 12:16:14 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(ci):=20Add=20--access=20public?= =?UTF-8?q?=20to=20pnpm=20publish=20in=20release.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v0.0.1-alpha.2 dry-run surfaced this E402 failure: npm error code E402 npm error 402 Payment Required - PUT https://registry.npmjs.org/@agent-assembly%2fsdk - You must sign up for private packages. Scoped npm packages (`@agent-assembly/sdk`) default to private on publish. The sibling release-node.yml workflow's publish step already carries `--access public`; the centralized release.yml's single publish step did not. Same bug, different file. Tracked: AAASM-2110 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 264b3a0..e80ee02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,4 +48,4 @@ jobs: fi echo "Publishing version=$VERSION with dist-tag arg='$DIST_TAG'" # shellcheck disable=SC2086 - pnpm publish --no-git-checks $DIST_TAG + pnpm publish --access public --no-git-checks $DIST_TAG