Skip to content

Commit

Permalink
downgrade upload/download artifact v4->v3 until we fix upload collisi…
Browse files Browse the repository at this point in the history
…ons.
  • Loading branch information
BrianPugh committed Jan 16, 2024
1 parent bbf7362 commit a44310b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]

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

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
delocate-listdeps --all {dest_dir}/$WHEEL_SIMPLE_FILENAME
echo "DONE."
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -90,7 +90,7 @@ jobs:
pip install build
python -m build . --sdist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
# 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 a44310b

Please sign in to comment.