Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: bump artifact versions 3->4 #133

Merged
merged 2 commits into from
Mar 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
- name: build binary wheels
uses: pypa/[email protected]
- name: upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bdist
name: bdist-${{ matrix.os }}
path: ./wheelhouse/*.whl
retention-days: 5
publish:
Expand All @@ -53,15 +53,16 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- name: download source wheel
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: sdist
path: wheels
- name: download binary wheels
uses: actions/download-artifact@v3
with:
name: bdist
pattern: bdist-*
path: wheels
merge-multiple: true
- name: publish package pypi.org
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
Loading