-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (65 loc) · 2.13 KB
/
docs.yml
File metadata and controls
70 lines (65 loc) · 2.13 KB
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
name: Docs
run-name: ${{github.event.workflow_run.head_commit.message}}
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [master]
concurrency:
cancel-in-progress: true
group: ${{github.workflow}}-${{github.ref_name}}
permissions:
pages: write
id-token: write
jobs:
docs:
runs-on: ubuntu-latest
name: Publish docs on GitHub pages
if: github.event.workflow_run.conclusion == 'success'
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: true
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
cache: gradle
cache-dependency-path: |
gradle/libs.versions.toml
gradle/wrapper/gradle-wrapper.properties
- name: Set up cross compilation
run: sudo apt-get install -qy {binutils,gcc}-aarch64-linux-gnu gcc-mingw-w64-x86-64-posix
- name: Get the cache versions
id: versions
shell: sh
run: |-
{
sed -n 's/kotlin-stdlib = "\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)"/kotlin=\1.\2.\3/p' gradle/libs.versions.toml
} >> "$GITHUB_OUTPUT"
- name: Restore Kotlin/Native prebuilt
uses: actions/cache/restore@v5
with:
path: ${{runner.tool_cache}}/konan/kotlin-native-prebuilt-*
key: konan-${{runner.os}}-prebuilt-${{steps.versions.outputs.kotlin}}
- name: Restore Kotlin/Native dependencies
uses: actions/cache/restore@v5
with:
path: ${{runner.tool_cache}}/konan/dependencies
key: konan-${{runner.os}}-dependencies
- name: Build documentation
run: ./gradlew --no-daemon dokkaGeneratePublicationHtml
env:
KONAN_DATA_DIR: ${{runner.tool_cache}}/konan
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: build/dokka/html
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5