-
Notifications
You must be signed in to change notification settings - Fork 135
40 lines (37 loc) · 1.16 KB
/
pypi-deploy.yaml
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Deploy package to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build
pip install auditwheel
- name: Build package
run:
python -m build
- name: Convert linux wheel to manylinux wheels
run:
auditwheel repair --plat manylinux_2_28_x86_64 -w dist dist/*linux_x86_64.whl
- name: Remove platform specific linux wheels
run:
rm dist/*-linux_x86_64.whl
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}