-
Notifications
You must be signed in to change notification settings - Fork 40
67 lines (62 loc) · 1.83 KB
/
Copy pathpypi-publish.yml
File metadata and controls
67 lines (62 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Upload Python Package to PyPI
on:
release:
types:
- published
jobs:
build_wheels:
name: Build wheels on ${{ matrix.python }} - ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
include:
- os: ubuntu-latest
python: "cp311"
cibw_platform: linux
- os: macos-latest
python: "cp311"
cibw_platform: macos
steps:
- uses: actions/checkout@v4
- name: Build Wheels
uses: pypa/cibuildwheel@v3.1.3
env:
CIBW_BUILD: "cp310-* cp311-*"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_ARCHS_MACOS: "x86_64"
CIBW_SKIP: "pp* *-musllinux_*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_BUILD_VERBOSITY: 1
CIBW_REPAIR_WHEEL_COMMAND_MACOS: "echo 'Skipping macOS wheel repair' && cp {wheel} {dest_dir}"
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.python }}-${{ matrix.os }}
path: wheelhouse/*.whl
build_sdist:
name: Build Source Distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
upload_pypi:
needs: [build_sdist, build_wheels]
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4.1.7
with:
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_JPMC_OSS }}
verbose: true