Skip to content

Commit

Permalink
Fix artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuzu-Typ committed Oct 9, 2024
1 parent dd6fd7b commit 1997249
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/deploy-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-win-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_mac:
Expand Down Expand Up @@ -67,6 +68,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-mac-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_manylinux:
Expand Down Expand Up @@ -110,6 +112,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-manylinux-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_musllinux:
Expand Down Expand Up @@ -149,6 +152,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-musllinux-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -172,6 +176,7 @@ jobs:

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

upload_pypi:
Expand All @@ -184,6 +189,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: artifact-*
merge-multiple: true
path: dist

- uses: pypa/gh-action-pypi-publish@v1.10.3
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-win-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_mac:
Expand Down Expand Up @@ -70,6 +71,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-mac-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_manylinux:
Expand Down Expand Up @@ -113,6 +115,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-manylinux-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_wheels_musllinux:
Expand Down Expand Up @@ -152,6 +155,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: artifact-musllinux-${{matrix.arch}}
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -175,6 +179,7 @@ jobs:

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

upload_pypi:
Expand All @@ -187,6 +192,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: artifact-*
merge-multiple: true
path: dist

- uses: pypa/gh-action-pypi-publish@v1.10.3
Expand Down

0 comments on commit 1997249

Please sign in to comment.