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

Align versions of upload/download artifact in Python workflow #1205

Merged
merged 2 commits into from
Sep 18, 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
7 changes: 3 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: dist
name: sdist
path: dist/*.tar.gz

build_wheels:
Expand Down Expand Up @@ -107,9 +107,9 @@ jobs:
pip install "numpy>=2.0.0"
CIBW_TEST_COMMAND: "python -c 'import idyntree.bindings'"

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

upload_pypi:
Expand All @@ -124,7 +124,6 @@ jobs:

- uses: actions/download-artifact@v4
with:
name: dist
path: dist

- name: Inspect dist folder
Expand Down
Loading