-
Notifications
You must be signed in to change notification settings - Fork 19
63 lines (55 loc) · 1.78 KB
/
release.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
name: 📦 Release
on: push
env:
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9,<3.13"
jobs:
make_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
make_wheels:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- {os: macos-13, arch: x86_64, build: "*"}
- {os: macos-14, arch: arm64, build: "*"}
- {os: windows-2022, arch: AMD64, build: "*"}
- {os: ubuntu-latest, arch: x86_64, build: "*"}
- {os: ubuntu-latest, arch: aarch64, build: "*9-manylinux*"}
- {os: ubuntu-latest, arch: aarch64, build: "*0-manylinux*"}
- {os: ubuntu-latest, arch: aarch64, build: "*1-manylinux*"}
- {os: ubuntu-latest, arch: aarch64, build: "*9-musllinux*"}
- {os: ubuntu-latest, arch: aarch64, build: "*0-musllinux*"}
- {os: ubuntu-latest, arch: aarch64, build: "*1-musllinux*"}
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64
if: matrix.os == 'ubuntu-latest'
- name: Build wheels
run: pipx run cibuildwheel==2.19.1
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
- uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
upload_all:
needs: [make_wheels, make_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{secrets.PYPI_API_TOKEN}}
skip-existing: true