-
Notifications
You must be signed in to change notification settings - Fork 3
84 lines (66 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# GitHub Actions workflow to build, test and publish Python packages to PyPI everytime a new release is created.
name: Publish release
on:
release:
types:
- published
jobs:
build:
name: Build package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# We use Python 3.10 here because it's the minimum Python version supported by this library.
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Install dependencies
run: pip install --upgrade pip build
- name: Build package
run: python -m build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: dist_packages
path: dist/
test:
# This job tests the built package by installing it via pip and running unit tests (without tox).
name: Test package
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: dist_packages
path: dist/
- name: Install built package with testing dependencies
run: pip install "$(find dist/ -name 'validataclass-*.whl')[testing]"
- name: Run unit tests
run: python -m pytest
publish:
name: Publish package
needs: test
runs-on: ubuntu-latest
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: dist_packages
path: dist/
- name: Upload package to GitHub release assets
uses: AButler/[email protected]
with:
files: dist/*
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish package to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}