File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,8 @@ jobs:
185
185
# Extract sdist to access tests
186
186
cd /tmp
187
187
tar -xzf /github/workspace/dist/${{needs.package_python3.outputs.sdist}}
188
- cd python-minifier-*
188
+ extracted_dir=$(tar -tzf /github/workspace/dist/${{needs.package_python3.outputs.sdist}} | head -1 | cut -f1 -d"/")
189
+ cd "$extracted_dir"
189
190
190
191
# Install test dependencies and package
191
192
pip${{ matrix.python }} install -r test/requirements.txt
@@ -323,6 +324,6 @@ jobs:
323
324
run : |
324
325
gh release upload "$RELEASE_ID" \
325
326
--repo ${{ github.repository }} \
326
- dist/${SDIST} \
327
- dist/${PYTHON3_WHEEL} \
328
- dist/${PYTHON2_WHEEL}
327
+ " dist/${SDIST}" \
328
+ " dist/${PYTHON3_WHEEL}" \
329
+ " dist/${PYTHON2_WHEEL}"
You can’t perform that action at this time.
0 commit comments