Skip to content

Commit

Permalink
Update build_wheels.yml
Browse files Browse the repository at this point in the history
actions/upload-artifact@v4 is causing build errors on github.  downgrading to actions/upload-artifact@v3 to try to get the github builds working again.  if that works then investigate what needs to change to support actions/upload-artifact@v4 later
  • Loading branch information
StephenCzarnecki authored Sep 19, 2024
1 parent 9079ae4 commit ff11219
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: python setup.py bdist_wheel

- name: upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: ./dist/*.whl

Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
run: python setup.py bdist_wheel

- name: upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: ./dist/*.whl

Expand All @@ -89,7 +89,7 @@ jobs:
build-requirements: 'setuptools'

- name: upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: ./dist/*-manylinux*.whl

0 comments on commit ff11219

Please sign in to comment.