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 bb3c752 commit f91b1dbCopy full SHA for f91b1db
.github/workflows/windows-build.yml
@@ -60,7 +60,9 @@ jobs:
60
- name: Decompress Python runtime
61
shell: pwsh
62
run: |
63
- .\zstd\zstd.exe -d python-standalone.tar.zst -o python-standalone.tar
+ # BUG FIX: The zstd executable is in a nested directory after extraction.
64
+ # Use the correct path to the executable.
65
+ .\zstd\zstd-v1.5.5-win64\zstd.exe -d python-standalone.tar.zst -o python-standalone.tar
66
tar -xf python-standalone.tar
67
68
- name: Move to python_runtime folder
0 commit comments