Skip to content

Commit 4cd3f35

Browse files
committed
next peach
1 parent e911fa1 commit 4cd3f35

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)