-
Notifications
You must be signed in to change notification settings - Fork 3
111 lines (86 loc) · 2.3 KB
/
ci.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
107
108
109
110
111
name: Run CI
on:
push:
branches: main
tags: v*
permissions:
contents: read
concurrency:
group: ci
cancel-in-progress: false
env:
PYPI_PACKAGE: hexdoc
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pages: read
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: pip install . build
- name: Get Pages url
run: |
url=$(gh api "repos/$GITHUB_REPOSITORY/pages" --jq '.html_url')
echo "GITHUB_PAGES_URL=$url" >> "$GITHUB_ENV"
- name: Export hexdoc resources
run: hexdoc export
- name: Build package
run: python -m build
- name: Upload package artifact
uses: actions/upload-artifact@v3
with:
name: python-build
path: dist
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Run pre-commit hooks
env:
SKIP: pyright
uses: pre-commit/action@v3.0.0
- name: Install Nox
run: pip install nox
- name: Run Nox
run: nox
publish-pypi:
runs-on: ubuntu-latest
needs: [build, test]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/${{ env.PYPI_PACKAGE }}
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
# convert v1!0.1.0.dev0 to v0.1.0
- name: Parse version tag
id: parse
run: |
set +H
echo "version=v$(echo "$GITHUB_REF" | grep -Eo '![0-9]+\.[0-9]+\.[0-9]+' | sed 's/!//')" >> "$GITHUB_OUTPUT"
- name: Update release tags
uses: haya14busa/action-update-semver@v1
with:
tag: ${{ steps.parse.outputs.version }}
- name: Download package artifact
uses: actions/download-artifact@v3
with:
name: python-build
path: dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1