From af8f216e365d8d89cd3b771de26ecd360c6179c2 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 20 Sep 2026 10:10:34 -0400 Subject: [PATCH] Fix docs artifact pattern matching arm64 wheels The glob dist-ubuntu-24.04* also matched dist-ubuntu-24.04-arm, so the docs job downloaded both x86_64 and aarch64 wheels and uv pip install dist/*.whl failed with conflicting URLs. The upload names are exact, so drop the glob. Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- .../workflows/{% if add_docs %}docs.yaml{% endif %}.jinja | 2 +- .../workflows/{% if add_docs %}docs.yaml{% endif %}.jinja | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/rust/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja b/python/rust/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja index e48bb1d..9b9fd45 100644 --- a/python/rust/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja +++ b/python/rust/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja @@ -27,7 +27,7 @@ jobs: - name: Download distributions uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: - pattern: dist-ubuntu-24.04* + pattern: dist-ubuntu-24.04 merge-multiple: true path: dist run-id: {% raw %}${{ github.event.workflow_run.id }}{% endraw %} diff --git a/python/rustjswasm/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja b/python/rustjswasm/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja index 3e69324..4e3d0ad 100644 --- a/python/rustjswasm/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja +++ b/python/rustjswasm/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja @@ -27,7 +27,7 @@ jobs: - name: Download distributions uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: - pattern: dist-ubuntu-24.04* + pattern: dist-ubuntu-24.04 merge-multiple: true path: dist run-id: {% raw %}${{ github.event.workflow_run.id }}{% endraw %}