We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d56957 commit d7d01aeCopy full SHA for d7d01ae
.github/workflows/package-build.yaml
@@ -39,11 +39,8 @@ jobs:
39
run: |
40
python -m build
41
mkdir -p dist_python
42
- if [[ "$RUNNER_OS" == "Windows" ]]; then
43
- mv dist/*.whl dist/*.tar.gz dist_python/ 2>NUL || true
44
- else
45
- mv dist/*.whl dist/*.tar.gz dist_python/ 2>/dev/null || true
46
- fi
+ mv dist/*.whl dist_python/
+ mv dist/*.tar.gz dist_python/ || true
47
48
- name: Create Linux executable
49
if: matrix.os == 'ubuntu-latest'
0 commit comments