Skip to content

Commit

Permalink
Merge pull request #1533 from ghutchis/fix-wheel-workflow
Browse files Browse the repository at this point in the history
Upgrading to upload / download v4 broke wheel builds
  • Loading branch information
ghutchis authored Dec 15, 2023
2 parents 650f73e + 0db4926 commit 73756d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Build wheels
run: cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -77,7 +77,7 @@ jobs:
# upload to PyPI on every tag push
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit 73756d3

Please sign in to comment.