From 91ce3a383860b6a74d0db1c5061249eac40d63e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 13 Nov 2025 04:34:24 +0100 Subject: [PATCH] fix(release): use correct package name 'llmx' instead of '@valknar/llmx' The build_npm_package.py script only accepts specific package choices: 'llmx', 'llmx-responses-api-proxy', 'llmx-sdk'. The scoped package name '@valknar/llmx' is not a valid choice. The package name 'llmx' is the correct identifier used internally by the build system, which then produces the scoped npm package. --- .github/workflows/rust-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 81f2a490..47db1998 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -445,7 +445,7 @@ jobs: run: | ./scripts/stage_npm_packages.py \ --release-version "${{ steps.release_name.outputs.name }}" \ - --package @valknar/llmx + --package llmx - name: Create GitHub Release uses: softprops/action-gh-release@v2