-
Notifications
You must be signed in to change notification settings - Fork 3
136 lines (113 loc) · 3.13 KB
/
main.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Test and Deploy
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- '**'
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --all-extras
- name: Check format
run: make check_format
- name: Run Linters
run: make lint
- name: Run tests
run: make test
build-and-publish-pypi:
name: Build and Publish to PyPI
needs:
- test
if: "startsWith(github.ref, 'refs/tags/v')"
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/open-image-models
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build a binary wheel
run: poetry build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
github-release:
name: Create GitHub release
needs:
- build-and-publish-pypi
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Check package version matches tag
id: check-version
uses: samuelcolvin/check-python-version@v4.1
with:
version_file_path: 'pyproject.toml'
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
--generate-notes
update_docs:
name: Update documentation
needs:
- github-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Poetry using pipx
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Configure Git user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Retrieve version
id: check-version
uses: samuelcolvin/check-python-version@v4.1
with:
version_file_path: 'pyproject.toml'
skip_env_check: true
- name: Deploy Documentation
run: |
poetry run mike deploy \
--update-aliases \
--push \
--branch docs-site \
${{ steps.check-version.outputs.VERSION_MAJOR_MINOR }} latest