Skip to content

Commit 445c079

Browse files
committed
peach build #24
1 parent 9f38503 commit 445c079

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ jobs:
3232
- name: see variables
3333
shell: pwsh
3434
run: |
35-
echo $env:WINPYVERSION
36-
echo $env:python_source
37-
echo $env:python_sha256
35+
Write-Output "WINPYVERSION is $env:WINPYVERSION"
36+
Write-Output "python_source is $env:python_source"
37+
Write-Output "python_sha256 is $env:python_sha256"
3838
3939
- name: Download python-3 standalone
4040
shell: pwsh
4141
run: |
42-
curl.exe -L -o "python-$env:WINPYVERSION-embed.tar.gz" $env:python_source
42+
curl.exe -L -o "python-3-embed.tar.gz" $env:python_source
4343
# Calculate SHA256 hash
44-
$filePath = "python-$env:WINPYVERSION-embed.tar.gz"
44+
$filePath = "python-3-embed.tar.gz"
4545
$expectedHash = $env:python_sha256
4646
4747
$hashObject = Get-FileHash -Path $filePath -Algorithm SHA256
@@ -56,13 +56,13 @@ jobs:
5656
exit 1
5757
}
5858
59-
- name: Extract python-$WINPYVERSION-embed.tar.gz to dotpython
59+
- name: Extract python-3-embed.tar.gz to dotpython
6060
shell: bash
6161
env:
6262
WINPYVERSION: ${{ env.WINPYVERSION }}
6363
run: |
6464
mkdir dotpython
65-
tar -xf python-$WINPYVERSION-embed.tar.gz -C dotpython
65+
tar -xf python-3-embed.tar.gz -C dotpython
6666
6767
#- name: re-compress archive in zip for usual worflow
6868
# shell: pwsh

0 commit comments

Comments
 (0)