From f8e9e308ce636ffc8c1452d0831ea9fd1cc6438d Mon Sep 17 00:00:00 2001 From: Petar Todorovic Date: Wed, 3 Jun 2026 17:24:13 +0200 Subject: [PATCH] fix(ci): publish widget from local path in release workflow npm parsed the bare "packages/widget" argument as a GitHub owner/repo shorthand and attempted an SSH git fetch, failing with exit code 128. Prefix the path with "./" so npm treats it as a local directory. --- .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 24eaf045..89370adf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,4 +82,4 @@ jobs: mise install pnpm install --frozen-lockfile pnpm exec turbo --filter=@stakekit/widget build - npm publish "$PACKAGE_DIR" + npm publish "./$PACKAGE_DIR"