1
- name : Generate Dokka
2
-
3
- on :
4
- release :
5
- types : [released]
6
-
7
- # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
8
- permissions :
9
- contents : read
10
- pages : write
11
- id-token : write
12
-
13
- jobs :
14
- generate-dokka :
15
- runs-on : ubuntu-latest
16
- environment :
17
- name : github-pages
18
- url : ${{ steps.deployment.outputs.page_url }}
19
- steps :
20
- - name : Checkout
21
- uses : actions/checkout@v4
22
-
23
- - name : set up JDK 11
24
- uses : actions/setup-java@v4
25
- with :
26
- distribution : " adopt"
27
- java-version : " 11"
28
-
29
- - name : Cache Gradle packages
30
- uses : actions/cache@v4
31
- with :
32
- path : |
33
- ~/.gradle/caches
34
- ~/.gradle/wrapper
35
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
36
- restore-keys : |
37
- ${{ runner.os }}-gradle-
38
-
39
- - name : Setup Pages
40
- uses : actions/configure-pages@v5
41
-
42
- - name : Generate docs with dokka
43
- run : make generateDokka
44
-
45
- - name : Upload artifact
46
- uses : actions/upload-pages-artifact@v3
47
- with :
48
- path : ${{ github.workspace }}/build/dokka/htmlMultiModule
49
-
50
- - name : Deploy to GitHub Pages
51
- id : deployment
52
- uses : actions/deploy-pages@v1
1
+ # Disable for now until we bump the kotlin version
2
+
3
+ # name: Generate Dokka
4
+ #
5
+ # on:
6
+ # release:
7
+ # types: [released]
8
+ #
9
+ # # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10
+ # permissions:
11
+ # contents: read
12
+ # pages: write
13
+ # id-token: write
14
+ #
15
+ # jobs:
16
+ # generate-dokka:
17
+ # runs-on: ubuntu-latest
18
+ # environment:
19
+ # name: github-pages
20
+ # url: ${{ steps.deployment.outputs.page_url }}
21
+ # steps:
22
+ # - name: Checkout
23
+ # uses: actions/checkout@v4
24
+ #
25
+ # - name: set up JDK 11
26
+ # uses: actions/setup-java@v4
27
+ # with:
28
+ # distribution: "adopt"
29
+ # java-version: "11"
30
+ #
31
+ # - name: Cache Gradle packages
32
+ # uses: actions/cache@v4
33
+ # with:
34
+ # path: |
35
+ # ~/.gradle/caches
36
+ # ~/.gradle/wrapper
37
+ # key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
38
+ # restore-keys: |
39
+ # ${{ runner.os }}-gradle-
40
+ #
41
+ # - name: Setup Pages
42
+ # uses: actions/configure-pages@v5
43
+ #
44
+ # - name: Generate docs with dokka
45
+ # run: make generateDokka
46
+ #
47
+ # - name: Upload artifact
48
+ # uses: actions/upload-pages-artifact@v3
49
+ # with:
50
+ # path: ${{ github.workspace }}/build/dokka/htmlMultiModule
51
+ #
52
+ # - name: Deploy to GitHub Pages
53
+ # id: deployment
54
+ # uses: actions/deploy-pages@v1
0 commit comments