Skip to content

Commit e324b03

Browse files
Update python-app.yml
1 parent c7573b5 commit e324b03

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/python-app.yml

+17
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,21 @@ jobs:
1717
with:
1818
python-version: '3.11.2'
1919

20+
21+
name: Download and Extract Python Zip
22+
23+
Extract:
24+
runs-on: windows-latest
25+
26+
steps:
27+
- name: Download and Extract Python Zip
28+
run: |
29+
$url = "https://github.com/actions/python-versions/releases/download/3.11.8-7809691605/python-3.11.8-win32-x64.zip"
30+
$output = "python.zip"
31+
32+
Invoke-WebRequest -Uri $url -OutFile $output
33+
34+
Expand-Archive -Path $output -DestinationPath .\python
35+
shell: powershell
36+
2037

0 commit comments

Comments
 (0)