Skip to content

Commit a4ad64e

Browse files
committed
further split down
1 parent a0a7980 commit a4ad64e

File tree

2 files changed

+7
-21
lines changed

2 files changed

+7
-21
lines changed

.github/actions/python-setup/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ runs:
4242
Move-Item -Path "dotpythonpre/python/*" -Destination "dotpython/python" -Force
4343
}
4444
45+
# Copy launchers_final files to dotpython
46+
Copy-Item -Path "winpython/portable/launchers_final/*" -Destination "dotpython/" -Recurse -Force
47+
New-Item -Path $env:dotwheelhouse -ItemType Directory -Force
48+
49+
Get-ChildItem dotpython
50+
Get-ChildItem dotpython\python
51+
4552
# Move to final location
4653
mkdir "${{ inputs.build_location }}" -Force
4754
Move-Item -Path "dotpython/*" -Destination "${{ inputs.build_location }}" -Force

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -168,27 +168,6 @@ jobs:
168168
python_sha256: ${{ env.python_sha256 }}
169169
build_location: ${{ env.build_location }}
170170

171-
- name: Copy launchers_final files to dotpython
172-
if: env.WINPYREQUIREMENTS != ''
173-
shell: bash
174-
run: |
175-
cp -r winpython/portable/launchers_final/* dotpython/
176-
mkdir $env:dotwheelhouse
177-
178-
- name: List dotpython contents (for debugging)
179-
if: env.WINPYREQUIREMENTS != ''
180-
shell: pwsh
181-
run: |
182-
Get-ChildItem dotpython
183-
Get-ChildItem dotpython\python
184-
185-
- name: Prepare WinPython target structure
186-
if: env.WINPYREQUIREMENTS != ''
187-
shell: pwsh
188-
run: |
189-
New-Item -ItemType Directory -Path $env:build_location
190-
Get-ChildItem -Path dotpython -Force | Move-Item -Destination $env:build_location -Force
191-
192171
- name: Download, checking hash and integrating pandoc binary
193172
if: env.WINPYREQUIREMENTS != '' && env.PANDOC == '1'
194173
uses: ./.github/actions/pandoc-setup

0 commit comments

Comments
 (0)