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 8939eaf commit 9fb933aCopy full SHA for 9fb933a
.github/workflows/create_draft_release.yaml
@@ -182,11 +182,11 @@ jobs:
182
if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
183
pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.sdist}}
184
185
- # Extract sdist to access tests
+ # Extract sdist to access tests
186
cd /tmp
187
tar -xzf /github/workspace/dist/${{needs.package_python3.outputs.sdist}}
188
- extracted_dir=$(tar -tzf /github/workspace/dist/${{needs.package_python3.outputs.sdist}} | head -1 | cut -f1 -d"/")
189
- cd "$extracted_dir"
+ # Use the first directory created (should be the only one)
+ cd python-minifier-*/
190
191
# Install test dependencies and package
192
pip${{ matrix.python }} install -r test/requirements.txt
0 commit comments