-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.11 KB
/
windows-python-dev-kit.yml
File metadata and controls
47 lines (38 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Windows Python Development Kit
on:
workflow_dispatch:
jobs:
package-python-dev:
runs-on: ${{ 'windows-latest' }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v6
- name: Download all Python versions using uv
shell: pwsh
run: |
python -V
python .github/scripts/uv_download.py
- name: Run packaging script
run: python .github/scripts/package_python.py
- name: Upload x86_64 artifacts
uses: actions/upload-artifact@v6
with:
name: python-windows-x86_64
path: dist/x86_64/
overwrite: true
- name: Upload x86 artifacts
uses: actions/upload-artifact@v6
with:
name: python-windows-x86
path: dist/x86/
overwrite: true
- name: Upload aarch64 artifacts
uses: actions/upload-artifact@v6
with:
name: python-windows-aarch64
path: dist/aarch64/
overwrite: true