We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1887b commit c3145f7Copy full SHA for c3145f7
.github/workflows/publish_docs.yml
@@ -20,17 +20,17 @@ jobs:
20
run: chmod +x gradlew
21
22
23
- - name: Build with Gradle
+ - name: Build project and generate docs with Dokka
24
uses: gradle/gradle-build-action@v2
25
with:
26
arguments: build dokkaHtml
27
28
29
- name: Move docs to gh-pages
30
run: |
31
- mkdir gh-pages
32
- mv README.md gh-pages/README.md
33
- mv build/dokka/html gh-pages/
+ mkdir -p gh-pages/android
+ mv README.md gh-pages/android/README.md
+ mv build/docs/* gh-pages/android/
34
35
36
- name: Publish docs
0 commit comments