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