We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent decf468 commit 55ede89Copy full SHA for 55ede89
.github/workflows/publish.yml
@@ -34,7 +34,7 @@ jobs:
34
run: python -m build
35
36
- name: List distribution file sizes
37
- run: ls -hl dist/*
+ run: du -h dist/*
38
39
- name: Check metadata verification
40
run: python -m twine check --strict dist/*
@@ -45,8 +45,8 @@ jobs:
45
pip install $(find dist -type f -name "*.whl") --target=./tmp
46
47
- name: List installed file sizes
48
- run: |
49
- cd ./tmp && du -h pvlib
+ run: du -h pvlib
+ working-directory: ./tmp
50
51
# only publish distribution to PyPI for tagged commits
52
- name: Publish distribution to PyPI
0 commit comments