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.
This commit is contained in:
Sebastian Krüger
2025-11-13 04:37:20 +01:00
parent 91ce3a3838
commit f58398dfbb

View File

@@ -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