From 3dbc5e7b3bcb88e56e5654a2f113cd56f88444c1 Mon Sep 17 00:00:00 2001 From: Stephanie Brink Date: Sat, 3 Jan 2026 21:54:14 -0800 Subject: [PATCH] use unique names for artifact uploads breaking change introduced in v4 of actions/upload-artifact action where you can no longer upload to the same named artifact multiple times in a single run --- .github/workflows/build_and_upload_wheels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_upload_wheels.yaml b/.github/workflows/build_and_upload_wheels.yaml index dc433fb6..2f2a7dfe 100644 --- a/.github/workflows/build_and_upload_wheels.yaml +++ b/.github/workflows/build_and_upload_wheels.yaml @@ -38,7 +38,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: thicket_build_artifacts_wheel + name: thicket_build_artifacts_wheel-${{ matrix.python-version }} path: dist/*.whl overwrite: true