We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0512e1f commit d58f834Copy full SHA for d58f834
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,6 +62,9 @@ jobs:
62
EOF
63
64
# Upload wheels from artifacts
65
+ pwd
66
+ ls -l
67
+ ls -l artifacts/**/*.whl
68
twine upload --repository github artifacts/**/*.whl
69
70
- name: Create GitHub release
0 commit comments