Skip to content

aiming for greener peach at build #10 #1738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/github_workflows_build-dot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
#New-Item -ItemType Directory -Path dotpython
#Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
mkdir WPy64-31351cloudb3
tar -xf python-3.13-embed.zip -C WPy64-31351cloudb3
tar -xf python-3.13-embed.zip -C dotpython

- name: Copy launchers_final files to dotpython
# enriching things: will need one python to play on the other, so why not there too
Expand All @@ -48,13 +48,13 @@ jobs:
run: |
Get-ChildItem -Recurse dotpython

- name: Prepare WinPython dot structure
- name: Prepare WinPython target dot structure
shell: pwsh
run: |
New-Item -ItemType Directory -Path WPy64-31351b3
# Get-ChildItem dotpython | Move-Item -Destination WinPython-dot-3.13
# fix: Usually, indygreg zips extract all files directly into the target, not into a subfolder: dotpython/python.exe, dotpython/Lib, etc.
Get-ChildItem -Path dotpython -Force | Move-Item -Destination WPy64-31351cloudb3 -Force
Get-ChildItem -Path dotpython -Force | Move-Item -Destination WPy64-31351b3 -Force
# Add more WinPython-specific folders/files here if needed

- name: List WPy64-31351cloudb3 contents (for debugging)
Expand Down