Skip to content

Commit 9fb933a

Browse files
committed
debug
1 parent 8939eaf commit 9fb933a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/create_draft_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ jobs:
182182
if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
183183
pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.sdist}}
184184
185-
# Extract sdist to access tests
185+
# Extract sdist to access tests
186186
cd /tmp
187187
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"
188+
# Use the first directory created (should be the only one)
189+
cd python-minifier-*/
190190
191191
# Install test dependencies and package
192192
pip${{ matrix.python }} install -r test/requirements.txt

0 commit comments

Comments
 (0)