From 5275fb49415f92a7376b410c5918efce9931209d Mon Sep 17 00:00:00 2001 From: Jared Lunde Date: Sat, 20 Jun 2026 11:52:05 -0700 Subject: [PATCH] fix(ci): publish the @beyond.dev/kv workspace package, not the private sdk/ts root sdk/ts is a private workspace root; @beyond.dev/kv lives in sdk/ts/kv. The release workflow versioned and published from sdk/ts, so npm publish ran against the private root and never published the package. Target sdk/ts/kv. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release-sdk.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-sdk.yml b/.github/workflows/release-sdk.yml index 49c9ecd..ea7b53b 100644 --- a/.github/workflows/release-sdk.yml +++ b/.github/workflows/release-sdk.yml @@ -20,9 +20,10 @@ jobs: run: | VERSION=${GITHUB_REF_NAME#sdk/v} npm version "$VERSION" --no-git-tag-version - working-directory: sdk/ts + # @beyond.dev/kv lives in the workspace package, not the (private) sdk/ts root + working-directory: sdk/ts/kv - name: build:ts run: mise run build:ts - name: publish run: npm publish --access public - working-directory: sdk/ts + working-directory: sdk/ts/kv