-
-
Notifications
You must be signed in to change notification settings - Fork 5
63 lines (49 loc) · 1.53 KB
/
publish-docs.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
name: Publish Documentation
on:
workflow_call:
inputs:
library-version:
required: true
type: string
jobs:
publish-docs:
name: Publish Documentation
runs-on: ubuntu-latest
env:
KACHE_VERSION: ${{ inputs.library-version }}
permissions:
contents: write
pages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Setup gradle
uses: gradle/actions/setup-gradle@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.13.1
- name: Generate the API documentation
run: ./gradlew --no-configuration-cache dokkaHtmlMultiModule
- name: Build mkdocs
run: |
pip3 install -r .github/workflows/publish-docs-requirements.txt
mkdocs build
- name: Configure git for mike
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git fetch origin gh-pages --depth=1
- name: Deploy documentation with mike
if: ${{ success() }}
run: |
mike deploy -u --push ${{ inputs.library-version }} \
${{ (endsWith(inputs.library-version, '-SNAPSHOT') && 'snapshot') || 'latest' }}