We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0512e1f commit 9481b6aCopy full SHA for 9481b6a
1 file changed
.github/workflows/release.yml
@@ -43,7 +43,7 @@ jobs:
43
- name: List downloaded files
44
run: |
45
echo "Artifacts downloaded:"
46
- find artifacts -type f -print
+ find artifacts -type f -exec readlink -f {} \;
47
48
- name: Publish wheel to GitHub PyPI
49
@@ -62,7 +62,7 @@ jobs:
62
EOF
63
64
# Upload wheels from artifacts
65
- twine upload --repository github artifacts/**/*.whl
+ twine upload --repository github artifacts/**/**/*.whl
66
67
- name: Create GitHub release
68
uses: softprops/action-gh-release@v2
0 commit comments