Skip to content

Commit

Permalink
Downgrade upload-artifact on 64 bit Windows
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
shenanigansd authored Mar 8, 2024
1 parent 120b746 commit ae03e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bld_wheels_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ae03e5c

Please sign in to comment.