How to upload multiple wheels in different path? #81
Answered
by
webknjaz
lidongze0629
asked this question in
Q&A
-
In our project, the directory structure after build as following:
How can I upload these 4 wheels to PyPI? In my - name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: xxx
password: xxx
packages_dir: |
coordinator/dist/
coordinator/dist/wheelhouse |
Beta Was this translation helpful? Give feedback.
Answered by
webknjaz
Dec 13, 2021
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
webknjaz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
packages_dir
only accepts one directory. You can either move all the wheels you need into one folder before calling this action or call this action twice — per directory.