We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d42bfe commit da4eec4Copy full SHA for da4eec4
.github/workflows/publish.yml
@@ -51,6 +51,14 @@ jobs:
51
retention-days: 1 # delete the artifact after 1 day, no need to keep it for too long
52
compression-level: 0 # no need to compress the files
53
54
+ - name: Distribution files & installation sizes
55
+ run: |
56
+ echo "Distribution files sizes"
57
+ du -sh dist/*
58
+ python -m pip install dist/*.whl --target /tmp/pvpltools --quiet --quiet
59
+ echo "Installation sizes"
60
+ du -sh /tmp/pvpltools
61
+
62
publish-distribution:
63
name: Upload distribution to PyPI
64
runs-on: ubuntu-latest
0 commit comments