From cb737efd4e74b9ec6ee3411a0b65c43c0f9e012f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Oct 2025 13:43:22 +0000 Subject: [PATCH 1/2] Initial plan From ed1899963264da58ad86253bd69a843a697c0c78 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Oct 2025 13:49:16 +0000 Subject: [PATCH 2/2] Fix release job to use pnpm's built-in publish function Co-authored-by: scottmessinger <100121+scottmessinger@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a2d6edd..9919aa7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,7 +42,7 @@ jobs: id: changesets uses: changesets/action@v1 with: - publish: pnpm exec changeset publish + publish: pnpm release title: "Release: Version Packages" commit: "Release: Version Packages" env: diff --git a/package.json b/package.json index 81127da..7571ae6 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "typecheck": "pnpm -r --filter=\"@supergrain/*\" run typecheck && pnpm --filter=\"js-framework-benchmark-react-supergrain\" run typecheck", "changeset": "changeset", "version-packages": "changeset version", - "release": "pnpm -r --filter=\"@supergrain/*\" build && changeset publish", + "release": "pnpm -r publish", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs"