We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f8e124 commit b26d38eCopy full SHA for b26d38e
.github/workflows/build.yml
@@ -85,6 +85,14 @@ jobs:
85
run: |
86
poetry build
87
88
+ - name: Clean up to free space
89
+ run: |
90
+ rm -rf .venv/
91
+ rm -rf tests/
92
+ rm -rf coverage.xml
93
+ rm -rf dist/*.tar.gz # Only keep the wheel if you don't need the source distribution
94
+ rm -rf build/
95
+
96
- name: Verify build
97
98
pip install dist/*.whl
.github/workflows/release.yml
@@ -82,6 +82,14 @@ jobs:
82
- name: Build package
83
run: poetry build
84
- name: Delete existing tag (if any)
0 commit comments