Skip to content

Commit b35c12e

Browse files
committed
fix
1 parent 223adb3 commit b35c12e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/github_workflows_build-all_3.14.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
SEVEN_Z: "0"
2424
EXE: "1"
2525
ARTIFACT_NAME: "publish_dotc"
26-
PYTHON_SOURCEF: "https://github.com/astral-sh/python-build-standalone/releases/download/20250818/cpython-3.14.0rc2+20250818-x86_64-pc-windows-msvc-install_only_stripped.tar.gz"
27-
PYTHON_SHA256F: "361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed"
26+
python_sourcef: "https://github.com/astral-sh/python-build-standalone/releases/download/20250818/cpython-3.14.0rc2+20250818-x86_64-pc-windows-msvc-install_only_stripped.tar.gz"
27+
python_sha256f: "361a49531a5d4bdc72bbccc81f7b5881b5eb751e3b47683b233cacae5aeeaeed"
2828

2929
- FLAVOR: "freec"
3030
REQUIREMENTS: "winpython\\portable\\cycle_2025_04\\requir.64-3_14_0_1dotrc2.txt"
@@ -33,8 +33,8 @@ jobs:
3333
SEVEN_Z: "0"
3434
EXE: "1"
3535
ARTIFACT_NAME: "publish_freec"
36-
PYTHON_SOURCEF: "https://github.com/winpython/winpy.github.io/releases/download/20250825/cpython-3.14.0rc2+20250825-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz"
37-
PYTHON_SHA256F: "dda491993214ae78948297848aa9d75d1d10762c33ff16487793ca5205516e4a"
36+
python_sourcef: "https://github.com/winpython/winpy.github.io/releases/download/20250825/cpython-3.14.0rc2+20250825-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz"
37+
python_sha256f: "dda491993214ae78948297848aa9d75d1d10762c33ff16487793ca5205516e4a"
3838

3939

4040
steps:
@@ -70,6 +70,8 @@ jobs:
7070
Write-Output "WINPYFLAVOR is $env:WINPYFLAVOR"
7171
Write-Output "python_sourcef is $env:python_sourcef"
7272
Write-Output "python_sha256f is $env:python_sha256f"
73+
Write-Output "python_source is $env:python_source"
74+
Write-Output "python_sha256 is $env:python_sha256"
7375
Write-Output "WINPYrequirements is $env:WINPYrequirements"
7476
Write-Output "WINPYrequirementswhl is $env:WINPYrequirementswhl"
7577
Write-Output "WINPYZIP is $env:WINPYZIP"
@@ -82,6 +84,7 @@ jobs:
8284
- name: Download python-3 standalone
8385
shell: pwsh
8486
run: |
87+
Write-Output "python_sourcef used is $env:python_sourcef"
8588
curl.exe -L -o "python-3-embed.tar.gz" $env:python_sourcef
8689
# Calculate SHA256 hash
8790
$filePath = "python-3-embed.tar.gz"

0 commit comments

Comments
 (0)