-
Notifications
You must be signed in to change notification settings - Fork 56
82 lines (70 loc) · 1.91 KB
/
build-wheels.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Build
on:
push:
branches: ["main"]
tags: ["v*"]
pull_request:
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels (${{ matrix.archs }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# wheels to build:
include:
- os: ubuntu-latest
archs: x86_64
- os: buildjet-4vcpu-ubuntu-2204-arm
archs: aarch64
- os: windows-latest
archs: AMD64 # ignore windows arm64 for now
- os: macos-latest
archs: x86_64 arm64
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
- name: Install cibuildwheel
run: python3 -m pip install cibuildwheel==2.15.0
- name: Build wheels
run: python3 -m cibuildwheel --output-dir dist
env:
CIBW_ARCHS: ${{ matrix.archs }}
CIBW_SKIP: "*-musllinux_*"
- uses: actions/upload-artifact@v3
with:
name: release
path: dist/*.whl
make_sdist:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
name: release
path: dist/*.tar.gz
publish:
name: Publish
needs: [build_wheels, make_sdist]
runs-on: ubuntu-latest
permissions:
id-token: write
# only execute on tag push v1 or workflow_dispatch
if: (github.event_name == 'push' && github.ref_type == 'tag') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/download-artifact@v3
with:
name: release
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}