From 1d6a07e9f31b73eccea1e4c94994f4a6ce4e8d36 Mon Sep 17 00:00:00 2001 From: Julien Stephan Date: Thu, 20 Aug 2026 10:29:27 +0200 Subject: [PATCH] tiktoken: fix upload name Currently names is not unique because we use matrix.python which is empty (does not exist) instead of matrix.python-version, this cause artifacts to have the same name, then download can use only the last uploaded artifact, publishing only one version of the wheel Signed-off-by: Julien Stephan --- .github/workflows/build-tiktoken.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-tiktoken.yml b/.github/workflows/build-tiktoken.yml index 9613ca40..46ae11da 100644 --- a/.github/workflows/build-tiktoken.yml +++ b/.github/workflows/build-tiktoken.yml @@ -61,7 +61,7 @@ jobs: - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 with: - name: tiktoken-${{ env.TIKTOKEN_VERSION }}-cp${{ matrix.python }}-manylinux_riscv64 + name: tiktoken-${{ env.TIKTOKEN_VERSION }}-cp${{ matrix.python-version }}-manylinux_riscv64 path: ./wheelhouse/*.whl publish: