We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef91666 commit 3b989a1Copy full SHA for 3b989a1
2 files changed
.github/workflows/build_for_pypi.yml
@@ -86,9 +86,10 @@ jobs:
86
run: |
87
ls -alrt */*/*
88
mv */*/* dist/
89
- ls -alrt */*
90
- find . -empty -type d -delete
91
- mv */* dist/
+ mv -r dist/dist/* dist/
+ echo "Moved files"
+ ls -alrt */*/*
92
+ echo "Deleting empty directories"
93
find . -empty -type d -delete
94
ls -alrt */*
95
- name: Publish package to PyPi
pyproject.toml
@@ -26,7 +26,7 @@ license = {file = "LICENSE"}
26
name = "codecov-cli"
27
readme = "README.md"
28
requires-python = ">= 3.9"
29
-version = "10.1.0"
+version = "10.0.1"
30
31
[project.scripts]
32
codecov = "codecov_cli.main:run"
0 commit comments