We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3119dd commit 7de1329Copy full SHA for 7de1329
1 file changed
.github/workflows/pypi_publish.yml
@@ -50,6 +50,7 @@ jobs:
50
uses: actions/upload-artifact@v4
51
with:
52
path: ./wheelhouse/*.whl
53
+ name: wheels-artifact
54
55
- name: Build Source Distribution
56
run: python setup.py sdist
@@ -58,6 +59,7 @@ jobs:
58
59
60
61
path: ./dist/*.zip
62
+ name: source-dist-artifact
63
64
upload_pypi:
65
needs: [build-n-publish]
@@ -66,7 +68,12 @@ jobs:
66
68
steps:
67
69
- uses: actions/download-artifact@v4
70
- name: artifact
71
72
+ path: dist
73
+
74
+ - uses: actions/download-artifact@v4
75
+ with:
76
77
path: dist
78
79
- uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments