-
Notifications
You must be signed in to change notification settings - Fork 18
66 lines (62 loc) · 1.74 KB
/
build_and_publish.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
name: Build and publish to PyPI
on:
release:
types: [created]
jobs:
build-sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
lfs: "true"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade build flake8
- name: Check for syntax errors
run: |
flake8 ./ms2pip --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Build sdist
run: python -m build --sdist --outdir dist
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/*.tar.gz
build-wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
with:
lfs: "true"
- uses: actions/setup-python@v2
name: Set up Python
with:
python-version: "3.11"
- name: Install cibuildwheel
run: python -m pip install cibuildwheel>=2
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/ms2pip-*.whl
publish-to-pypi:
needs: [build-sdist, build-wheels]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
name: dist
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}