-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade upload-artifact@v4 download-artifact@v4
- Loading branch information
Showing
1 changed file
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
- name: Check metadata | ||
run: pipx run twine check dist/* | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
path: dist/*.tar.gz | ||
|
||
|
@@ -56,27 +56,27 @@ jobs: | |
python: 313 | ||
platform_id: win_amd64 | ||
|
||
# Linux 64 bit manylinux2014 | ||
# Linux 64 bit manylinux_2_28 | ||
- os: ubuntu-latest | ||
python: 39 | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux2014 | ||
manylinux_image: manylinux_2_28 | ||
- os: ubuntu-latest | ||
python: 310 | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux2014 | ||
manylinux_image: manylinux_2_28 | ||
- os: ubuntu-latest | ||
python: 311 | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux2014 | ||
manylinux_image: manylinux_2_28 | ||
- os: ubuntu-latest | ||
python: 312 | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux2014 | ||
manylinux_image: manylinux_2_28 | ||
- os: ubuntu-latest | ||
python: 313 | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux2014 | ||
manylinux_image: manylinux_2_28 | ||
|
||
# MacOS x86_64 | ||
- os: macos-latest | ||
|
@@ -130,8 +130,9 @@ jobs: | |
shell: bash | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: wheel-${{ strategy.job-index }} | ||
path: wheelhouse/*.whl | ||
|
||
upload_all: | ||
|
@@ -145,11 +146,12 @@ jobs: | |
with: | ||
python-version: "3.x" | ||
|
||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: artifact | ||
pattern: wheel-* | ||
path: dist | ||
|
||
merge-multiple: true | ||
|
||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
|