aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/gh-pages-examples.yml
blob: a47d37b2192717d855e351858cd0fc5e6bef5133 (plain)
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
name: Build and deploy examples to GitHub Pages

on:
  push:
    branches:
      - master
jobs:
  build-examples:
    runs-on: ubuntu-latest
    if: github.repository == 'Kotlin/dokka'
    strategy:
      matrix:
        projects: [
            dokka-gradle-example,
            dokka-kotlinAsJava-example,
            dokka-library-publishing-example,
            dokka-multiplatform-example,
            dokka-customFormat-example
        ]
    steps:
      - name: Checkout dokka
        uses: actions/checkout@v2
      - uses: dorny/paths-filter@v2
        id: filter
        with:
          filters: |
            examples_changed:
              - 'examples/gradle/${{ matrix.projects }}/**'

      - uses: actions/setup-java@v2
        with:
          distribution: 'zulu'
          java-version: 11

      - name: Build html
        run: ./gradlew dokkaHtml --no-daemon --stacktrace
        working-directory: examples/gradle/${{ matrix.projects }}
        if: steps.filter.outputs.examples_changed == 'true'

      - name: Upload artifact
        uses: actions/upload-artifact@v2
        if: steps.filter.outputs.examples_changed == 'true'
        with:
          name: ${{ matrix.projects }}
          path: examples/gradle/${{ matrix.projects }}/build/dokka

  build-multimodule-examples:
    runs-on: ubuntu-latest
    if: github.repository == 'Kotlin/dokka'
    strategy:
      matrix:
        projects: [
          dokka-versioning-multimodule-example
        ]
    steps:
      - name: Checkout dokka
        uses: actions/checkout@v2
      - uses: dorny/paths-filter@v2
        id: filter
        with:
          filters: |
            examples_changed:
              - 'examples/gradle/${{ matrix.projects }}/**'

      - uses: actions/setup-java@v2
        with:
          distribution: 'zulu'
          java-version: 11

      - name: Build html
        run: ./gradlew dokkaHtmlMultiModule --no-daemon --stacktrace
        working-directory: examples/gradle/${{ matrix.projects }}
        if: steps.filter.outputs.examples_changed == 'true'

      - name: Upload artifact
        uses: actions/upload-artifact@v2
        if: steps.filter.outputs.examples_changed == 'true'
        with:
          name: ${{ matrix.projects }}
          path: examples/gradle/${{ matrix.projects }}/parentProject/build/dokka

  deploy-examples:
    runs-on: ubuntu-latest
    needs: [build-examples, build-multimodule-examples]
    steps:
      - uses: actions/download-artifact@v2
        with:
          path: public/examples
      - name: Deploy
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          keep_files: true
          publish_dir: ./public
          full_commit_message: Publish examples