File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,24 @@ jobs:
1717 # tar -xf python-3.13-embed.zip -C dotpython
1818 powershell -Command "Expand-Archive -Path 'python-3.13-embed.zip' -DestinationPath 'dotpython'"
1919 - name : Prepare WinPython dot structure
20+ # run: |
21+ # mkdir WinPython-dot-3.13
22+ # move dotpython\* WinPython-dot-3.13\
23+ shell : pwsh
2024 run : |
21- mkdir WinPython-dot-3.13
22- move dotpython\* WinPython-dot-3.13\
25+ New-Item -ItemType Directory -Path WinPython-dot-3.13
26+ Get-ChildItem dotpython | Move-Item -Destination WinPython-dot-3.13
2327 # Add more WinPython-specific folders/files here if needed
2428
2529 - name : Zip the result
30+ # run: |
31+ # Compress-Archive -Path WinPython-dot-3.13\* -DestinationPath WinPython-dot-3.13.zip
32+ shell : pwsh
2633 run : |
2734 Compress-Archive -Path WinPython-dot-3.13\* -DestinationPath WinPython-dot-3.13.zip
2835
2936 - name : Upload artifact
3037 uses : actions/upload-artifact@v4
3138 with :
3239 name : WinPython-dot-3.13
33- path : WinPython-dot-3.13.zip
40+ path : WinPython-dot-3.13.zip
You can’t perform that action at this time.
0 commit comments