Skip to content

Commit

Permalink
upload_artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dvolodin7 committed Nov 6, 2024
1 parent cc2c18c commit 0be54ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: ./tools/build/build-sdist.sh

- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
./tools/build/build-many.sh 3.9 3.10 3.11 3.12 3.13
- name: Save Artefacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheel_manylinux_2_17_${{ matrix.arch }}
path: wheelhouse/*.whl
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
./tools/build/build-many.sh 3.9 3.10 3.11 3.12 3.13
- name: Save Artefacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheel_manylinux_2_24_${{ matrix.arch }}
path: wheelhouse/*.whl
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
# ./tools/build/build-many.sh 3.9 3.10

# - name: Save Artefacts
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: wheel_musllinux_1_1_${{ matrix.arch }}
# path: wheelhouse/*.whl
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
# RUST_ARCH=x86_64-apple-darwin

# - name: Save Artefacts
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: wheel_${{ matrix.platform }}_${{ matrix.arch }}
# path: wheelhouse/*.whl
Expand All @@ -197,7 +197,7 @@ jobs:
# - build-wheel-macos
steps:
- name: Download Artefacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: dist/

Expand Down
1 change: 1 addition & 0 deletions tests/test_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def _get_root() -> str:
"actions/cache@v4",
"actions/checkout@v4",
"actions/setup-python@v5",
"actions/upload-artifact@v4",
"pypa/gh-action-pypi-publish@release/v1",
]

Expand Down

0 comments on commit 0be54ac

Please sign in to comment.