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