Skip to content

Commit 2654842

Browse files
committed
copilote quota of the month 80% achieved, trying alone fix to build #6
1 parent 9143088 commit 2654842

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/github_workflows_build-dot.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
uses: actions/checkout@v4
1212

1313
- name: Download python-3.13 standalone
14-
shell: cmd
14+
#shell: cmd
1515
run: |
16-
curl -L -o python-3.13-embed.zip https://github.com/indygreg/python-build-standalone/releases/download/20240421/cpython-3.13.0b1+20240421-x86_64-pc-windows-msvc-shared-install_only.zip
17-
16+
#curl -L -o python-3.13-embed.zip https://github.com/indygreg/python-build-standalone/releases/download/20240421/cpython-3.13.0b1+20240421-x86_64-pc-windows-msvc-shared-install_only.zip
17+
curl -L -o python-3.13-embed.zip https://github.com/astral-sh/python-build-standalone/releases/download/20250807/cpython-3.13.6+20250807-x86_64-pc-windows-msvc-install_only_stripped.tar.gz
1818
- name: Show downloaded file info
1919
shell: pwsh
2020
run: |
@@ -26,10 +26,12 @@ jobs:
2626
Start-Sleep -Seconds 2
2727
2828
- name: Extract python-3.13-embed.zip
29-
shell: pwsh
29+
#shell: pwsh
3030
run: |
31-
New-Item -ItemType Directory -Path dotpython
32-
Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
31+
#New-Item -ItemType Directory -Path dotpython
32+
#Expand-Archive -Path python-3.13-embed.zip -DestinationPath dotpython
33+
mkdir dotpython
34+
tar -xf python-3.13-embed.zip -C dotpython
3335
3436
- name: List dotpython contents (for debugging)
3537
shell: pwsh

0 commit comments

Comments
 (0)