Skip to content

Commit e47165e

Browse files
committed
trying to get a better initial infrastructure for #build7
1 parent 2654842 commit e47165e

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ jobs:
3131
#New-Item -ItemType Directory -Path dotpython
3232
#Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
3333
mkdir dotpython
34-
tar -xf python-3.13-embed.zip -C dotpython
34+
tar -xf python-3.13-embed.zip -C WPy64-31351cloudb3
35+
36+
- name: Copy launchers_final files to dotpython
37+
# enriching things: will need one python to play on the other, so why not there too
38+
run: |
39+
cp -r winpython/portable/launchers_final/* dotpython/
3540
3641
- name: List dotpython contents (for debugging)
3742
shell: pwsh
@@ -41,25 +46,25 @@ jobs:
4146
- name: Prepare WinPython dot structure
4247
shell: pwsh
4348
run: |
44-
New-Item -ItemType Directory -Path WinPython-dot-3.13
49+
New-Item -ItemType Directory -Path WPy64-31351b3
4550
# Get-ChildItem dotpython | Move-Item -Destination WinPython-dot-3.13
4651
# fix: Usually, indygreg zips extract all files directly into the target, not into a subfolder: dotpython/python.exe, dotpython/Lib, etc.
47-
Get-ChildItem -Path dotpython -Force | Move-Item -Destination WinPython-dot-3.13 -Force
52+
Get-ChildItem -Path dotpython -Force | Move-Item -Destination WPy64-31351cloudb3 -Force
4853
# Add more WinPython-specific folders/files here if needed
4954
50-
- name: List WinPython-dot-3.13 contents (for debugging)
55+
- name: List WPy64-31351cloudb3 contents (for debugging)
5156
shell: pwsh
5257
run: |
53-
Get-ChildItem -Recurse WinPython-dot-3.13
58+
Get-ChildItem -Recurse WPy64-31351b3
5459
- name: Zip the result
5560
# run: |
5661
# Compress-Archive -Path WinPython-dot-3.13\* -DestinationPath WinPython-dot-3.13.zip
5762
shell: pwsh
5863
run: |
59-
Compress-Archive -Path WinPython-dot-3.13\* -DestinationPath WinPython-dot-3.13.zip
64+
Compress-Archive -Path WPy64-31351b3\* -DestinationPath WinPython64-3.13.5.1dotcloudb3.zip
6065
6166
- name: Upload artifact
6267
uses: actions/upload-artifact@v4
6368
with:
64-
name: WinPython-dot-3.13
65-
path: WinPython-dot-3.13.zip
69+
name: WinPython64-3.13.5.1dotcloudb3
70+
path: WinPython64-3.13.5.1dotcloudb3.zip

0 commit comments

Comments
 (0)