-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (85 loc) · 2.36 KB
/
publish-to-pypi.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Quality:
runs-on: ubuntu-latest
environment: github-pages
permissions:
id-token: write
contents: write
pages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Python Poetry
uses: abatilo/[email protected]
- name: Configure poetry
shell: bash
run: python -m poetry config virtualenvs.in-project true
- name: View poetry version
run: poetry --version
- name: Install dependencies
run: |
python -m poetry install
- name: Test
run: poetry run python3 -m unittest discover
- name: Install pdoc3
run: pip install pdoc3
- name: Generate documentation
run: poetry run pdoc --html gnnnas --force
- name: Upload documentation to GitHub Pages
uses: actions/upload-pages-artifact@v2
with:
path: ./html/gnnnas
- name: Deploy documentation to GitHub Pages
uses: actions/deploy-pages@v2
with:
token: ${{ secrets.GH_TOKEN }}
Release:
needs: Quality
if: |
github.event_name == 'push' &&
github.ref == 'refs/heads/main' &&
!contains ( github.event.head_commit.message, 'chore(release)' )
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Python Poetry
uses: abatilo/[email protected]
- uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Check release status
id: release-status
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
pip install python-semantic-release
if semantic-release --strict version
then
echo "Releasing new version."
else
echo "Skipping release steps."
fi
- if: steps.release-status.outputs.released == 'true'
name: Release to PyPI
id: pypi-release
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry config pypi-token.pypi $PYPI_TOKEN
poetry build
poetry publish