Skip to content

Commit 2e6ba07

Browse files
committed
Fix uploading
1 parent 8066c46 commit 2e6ba07

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,13 @@ jobs:
7979
steps:
8080
- uses: actions/download-artifact@v5
8181
with:
82-
path: dist/
82+
pattern: artifact-*
83+
merge-multiple: true
84+
path: dist
85+
86+
- name: Print out packages
87+
run: ls dist
88+
8389
- uses: pypa/gh-action-pypi-publish@release/v1
8490
with:
8591
repository-url: https://test.pypi.org/legacy/
@@ -100,14 +106,22 @@ jobs:
100106
steps:
101107
- uses: actions/download-artifact@v5
102108
with:
103-
path: dist/
109+
pattern: artifact-*
110+
merge-multiple: true
111+
path: dist
112+
113+
- name: Print out packages
114+
run: ls dist
115+
104116
- uses: pypa/gh-action-pypi-publish@release/v1
105117
with:
106118
skip-existing: true
107119
verify-metadata: false
108120

109121

110122

123+
124+
111125
# upload_pypi:
112126
# name: Upload to PyPI
113127
# environment:

0 commit comments

Comments
 (0)