We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5d163 commit 952d6c1Copy full SHA for 952d6c1
1 file changed
.github/workflows/python-publish.yaml
@@ -78,13 +78,16 @@ jobs:
78
79
- uses: actions/download-artifact@v7
80
with:
81
- path: dist
+ path: artifact
82
83
- name: Install wheel
84
run: |
85
pip install --upgrade pip
86
pip install wheel
87
find .
88
+ mkdir dist
89
+ cp artifact/*/*.whl dist/
90
+ cp artifact/*/*.tar.gz dist/
91
pip install dist/*.whl
92
93
- name: Test module
@@ -108,8 +111,14 @@ jobs:
108
111
steps:
109
112
110
113
- name: artifact
114
115
+
116
+ - name: Install wheel
117
+ run: |
118
+ find .
119
120
121
122
123
- name: Publish package distributions to PyPI
124
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments