From 575ff13ae12a3f9a68e1ad8c3a7fe8d0ae741a5d Mon Sep 17 00:00:00 2001 From: Vance Ingalls Date: Thu, 18 Jun 2026 22:36:59 -0700 Subject: [PATCH] ci(publish): publish @hyperframes/sdk to npm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SDK is version-bumped by scripts/set-version.ts (it's in the PACKAGES list) but was never added to the publish_pkg list in publish.yml — so @hyperframes/sdk@0.6.112 sits on the version line yet is absent from npm (404), while core/player/engine/etc. all shipped at 0.6.112. Add the missing publish call so the SDK ships with every release. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 459d8c276e..32d6b8445d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -125,6 +125,7 @@ jobs: } publish_pkg "@hyperframes/core" "@hyperframes/core" + publish_pkg "@hyperframes/sdk" "@hyperframes/sdk" publish_pkg "@hyperframes/engine" "@hyperframes/engine" publish_pkg "@hyperframes/player" "@hyperframes/player" publish_pkg "@hyperframes/producer" "@hyperframes/producer"