From ae03e5cee950796a9b8ac9581543929bcbae2d3e Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Fri, 8 Mar 2024 22:52:22 +0000 Subject: [PATCH] Downgrade upload-artifact on 64 bit Windows actions/upload-artifact was only bumped to v4 on 64 bit Windows. Artifacts created with v4 can not be downloaded by v3, so the download step in the release job completely misses the 64 bit Windows wheels. ref: https://github.blog/changelog/2023-12-14-github-actions-artifacts-v4-is-now-generally-available/ Signed-off-by: Bradley Reynolds --- .github/workflows/bld_wheels_and_upload.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bld_wheels_and_upload.yml b/.github/workflows/bld_wheels_and_upload.yml index 36358393..1197f4c0 100644 --- a/.github/workflows/bld_wheels_and_upload.yml +++ b/.github/workflows/bld_wheels_and_upload.yml @@ -25,7 +25,7 @@ jobs: env: CIBW_BUILD: "*-win_amd64" CIBW_SKIP: "cp36-* pp*" - - uses: actions/upload-artifact@v4.3.1 + - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl