Skip to content
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
14 changes: 11 additions & 3 deletions .github/workflows/github_workflows_build-dot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build WinPython Dot 3.13
name: Build WinPython Dot 3.13, # fix to build #3

on:
workflow_dispatch:
Expand All @@ -16,14 +16,22 @@ jobs:
mkdir dotpython
# tar -xf python-3.13-embed.zip -C dotpython
powershell -Command "Expand-Archive -Path 'python-3.13-embed.zip' -DestinationPath 'dotpython'"

- name: List dotpython contents
shell: pwsh
run: |
Get-ChildItem -Recurse dotpython

- name: Prepare WinPython dot structure
# run: |
# mkdir WinPython-dot-3.13
# move dotpython\* WinPython-dot-3.13\
shell: pwsh
run: |
New-Item -ItemType Directory -Path WinPython-dot-3.13
Get-ChildItem dotpython | Move-Item -Destination WinPython-dot-3.13
# 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 WinPython-dot-3.13 -Force
# Add more WinPython-specific folders/files here if needed

- name: Zip the result
Expand All @@ -37,4 +45,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: WinPython-dot-3.13
path: WinPython-dot-3.13.zip
path: WinPython-dot-3.13.zip