Skip to content

Commit 1c6a0c1

Browse files
authored
Python 3.9.1
1 parent 54561d0 commit 1c6a0c1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/blank.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@ jobs:
2525

2626
- name: Compile Python
2727
run: |
28-
curl -O -L -s https://github.com/python/cpython/archive/v3.9.0.tar.gz
29-
tar xf v3.9.0.tar.gz
30-
cd cpython-3.9.0
28+
curl -O -L -s https://github.com/python/cpython/archive/v3.9.1.tar.gz
29+
tar xf v3.9.1.tar.gz
30+
cd cpython-3.9.1
3131
PCbuild\build.bat -e -p x64
3232
PCbuild\build.bat -e -p ARM64
3333
3434
- name: Create zip file
3535
shell: cmd
3636
run: |
37-
mkdir cpython-3.9.0\PCBuild\arm64\lib
38-
mkdir cpython-3.9.0\PCBuild\arm64\include
39-
xcopy /i /e cpython-3.9.0\lib\*.* cpython-3.9.0\PCBuild\arm64\lib
40-
xcopy /i /e cpython-3.9.0\include\*.* cpython-3.9.0\PCBuild\arm64\include
41-
powershell Compress-7Zip "cpython-3.9.0\PCBuild\arm64" -ArchiveFileName "Python-3.9.0-Windows-ARM64.zip" -Format Zip
37+
mkdir cpython-3.9.1\PCBuild\arm64\lib
38+
mkdir cpython-3.9.1\PCBuild\arm64\include
39+
xcopy /i /e cpython-3.9.1\lib\*.* cpython-3.9.1\PCBuild\arm64\lib
40+
xcopy /i /e cpython-3.9.1\include\*.* cpython-3.9.1\PCBuild\arm64\include
41+
powershell Compress-7Zip "cpython-3.9.1\PCBuild\arm64" -ArchiveFileName "Python-3.9.1-Windows-ARM64.zip" -Format Zip
4242
4343
- name: Building EXE and ZIP
4444
shell: cmd
4545
run: |
46-
cd cpython-3.9.0
46+
cd cpython-3.9.1
4747
call "PCbuild\find_msbuild.bat" %MSBUILD%
4848
mkdir Tools\nuget\PCbuild
4949
xcopy /i /e PCbuild\*.* Tools\nuget\PCbuild\
@@ -81,6 +81,6 @@ jobs:
8181
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8282
with:
8383
upload_url: ${{ steps.create_release.outputs.upload_url }}
84-
asset_path: ./Python-3.9.0-Windows-ARM64.zip
85-
asset_name: Python-3.9.0-Windows-ARM64.zip
84+
asset_path: ./Python-3.9.1-Windows-ARM64.zip
85+
asset_name: Python-3.9.1-Windows-ARM64.zip
8686
asset_content_type: application/zip

0 commit comments

Comments
 (0)