From f58398dfbb510dbe18e776649e05aa019166a6ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 13 Nov 2025 04:37:20 +0100 Subject: [PATCH] fix(release): correct npm tarball filename pattern The stage_npm_packages.py script creates tarballs named {package}-npm-{version}.tgz (e.g., llmx-npm-0.1.0.tgz), but the workflow was looking for valknar-llmx-npm-{version}.tgz. Fixed the download pattern and publish tarball list to match the actual output from the staging script. --- .github/workflows/rust-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 47db1998..0f85c890 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -499,7 +499,7 @@ jobs: mkdir -p dist/npm gh release download "$tag" \ --repo "${GITHUB_REPOSITORY}" \ - --pattern "valknar-llmx-npm-${version}.tgz" \ + --pattern "llmx-npm-${version}.tgz" \ --dir dist/npm # No NODE_AUTH_TOKEN needed because we use OIDC. @@ -515,7 +515,7 @@ jobs: fi tarballs=( - "valknar-llmx-npm-${VERSION}.tgz" + "llmx-npm-${VERSION}.tgz" ) for tarball in "${tarballs[@]}"; do