Skip to content

Commit f655511

Browse files
committed
tweaking cloud
1 parent cf71b75 commit f655511

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "WINPYrequirementswhl=" >> $GITHUB_ENV
2020
echo "WINPYZIP=1">> $GITHUB_ENV
2121
echo "WINPY7Z=0">> $GITHUB_ENV
22-
echo "WINPYEXE=0">> $GITHUB_ENV
22+
echo "WINPYEXE=1">> $GITHUB_ENV
2323
2424
#3.13.6
2525
#echo "python_source=https://github.com/astral-sh/python-build-standalone/releases/download/20250814/cpython-3.13.6+20250814-x86_64-pc-windows-msvc-install_only_stripped.tar.gz" >> $GITHUB_ENV
@@ -43,6 +43,7 @@ jobs:
4343
shell: pwsh
4444
run: |
4545
Write-Output "WINPYVERSION is $env:WINPYVERSION"
46+
Write-Output "WINPYFLAVOR is $env:WINPYFLAVOR"
4647
Write-Output "python_source is $env:python_source"
4748
Write-Output "python_sha256 is $env:python_sha256"
4849
Write-Output "WINPYrequirements is $env:WINPYrequirements"
@@ -162,14 +163,14 @@ jobs:
162163
- name: Zip the result
163164
shell: pwsh
164165
run: |
165-
$destfile = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.zip"
166+
$destfile = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
166167
if ($env:WINPYZIP -eq "1") {
167168
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
168169
}
169170
- name: 7z archive the result
170171
shell: pwsh
171172
run: |
172-
$destfile7z = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.7z"
173+
$destfile7z = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
173174
$sourceDir = "$env:build_location"
174175
175176
# Use 7z.exe from PATH, or specify full path if needed
@@ -180,7 +181,7 @@ jobs:
180181
- name: 7z executable archive the result
181182
shell: pwsh
182183
run: |
183-
$destfile7z = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.exe"
184+
$destfile7z = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.exe"
184185
$sourceDir = "$env:build_location"
185186
186187
# Use 7z.exe from PATH, or specify full path if needed

.github/workflows/github_workflows_build-whl.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
shell: pwsh
4444
run: |
4545
Write-Output "WINPYVERSION is $env:WINPYVERSION"
46+
Write-Output "WINPYFLAVOR is $env:WINPYFLAVOR"
4647
Write-Output "python_source is $env:python_source"
4748
Write-Output "python_sha256 is $env:python_sha256"
4849
Write-Output "WINPYrequirements is $env:WINPYrequirements"
@@ -162,14 +163,14 @@ jobs:
162163
- name: Zip the result
163164
shell: pwsh
164165
run: |
165-
$destfile = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.zip"
166+
$destfile = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
166167
if ($env:WINPYZIP -eq "1") {
167168
Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
168169
}
169170
- name: 7z archive the result
170171
shell: pwsh
171172
run: |
172-
$destfile7z = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.7z"
173+
$destfile7z = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
173174
$sourceDir = "$env:build_location"
174175
175176
# Use 7z.exe from PATH, or specify full path if needed
@@ -180,7 +181,7 @@ jobs:
180181
- name: 7z executable archive the result
181182
shell: pwsh
182183
run: |
183-
$destfile7z = "publish_dot\WinPython-$env:WINPYARCHbit-$env:WINPYVER.exe"
184+
$destfile7z = "publish_dot\WinPython$env:WINPYARCH-$env:WINPYVER.exe"
184185
$sourceDir = "$env:build_location"
185186
186187
# Use 7z.exe from PATH, or specify full path if needed

0 commit comments

Comments
 (0)