Skip to content

Commit c9d364a

Browse files
committed
workaround for file structure
1 parent 49810a4 commit c9d364a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/upload_testpypi.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,15 @@ jobs:
2525
uses: dawidd6/action-download-artifact@v2
2626
with:
2727
# download all the wheels
28-
path: dist
29-
merge-multiple: true
28+
path: unmerged
3029
run_id: ${{ github.event.inputs.workflow_id }}
3130
workflow: build_wheels.yml
3231

32+
- name: Merge files to dist
33+
run: |
34+
mkdir dist
35+
mv unmerged/*/*.whl dist
36+
3337
- name: Publish distribution 📦 to TestPyPI
3438
uses: pypa/gh-action-pypi-publish@release/v1
3539
with:

0 commit comments

Comments
 (0)