-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (65 loc) · 1.76 KB
/
release-h3result-py.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
83
84
name: Release h3result-py
on:
push:
tags:
- h3result-py-v*
defaults:
run:
working-directory: h3result-py
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: h3result-py/dist/*.tar.gz
make_linux_wheels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Build wheels
run: pipx run cibuildwheel==2.21.0
- uses: actions/upload-artifact@v3
with:
path: h3result-py/wheelhouse/*.whl
make_macos_intel_wheels:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build wheels
run: pipx run cibuildwheel==2.21.0
- uses: actions/upload-artifact@v3
with:
path: h3result-py/wheelhouse/*.whl
make_macos_arm_wheels:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Install autoconf
run: brew install autoconf
- name: Build wheels
run: pipx run cibuildwheel==2.21.0
- uses: actions/upload-artifact@v3
with:
path: h3result-py/wheelhouse/*.whl
upload_all:
needs: [make_linux_wheels, make_macos_intel_wheels, make_macos_arm_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