Skip to content

Commit c3145f7

Browse files
committed
Fixed docs target directory in publish_docs.yml
1 parent ed1887b commit c3145f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish_docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
run: chmod +x gradlew
2121

2222

23-
- name: Build with Gradle
23+
- name: Build project and generate docs with Dokka
2424
uses: gradle/gradle-build-action@v2
2525
with:
2626
arguments: build dokkaHtml
2727

2828

2929
- name: Move docs to gh-pages
3030
run: |
31-
mkdir gh-pages
32-
mv README.md gh-pages/README.md
33-
mv build/dokka/html gh-pages/
31+
mkdir -p gh-pages/android
32+
mv README.md gh-pages/android/README.md
33+
mv build/docs/* gh-pages/android/
3434
3535
3636
- name: Publish docs

0 commit comments

Comments
 (0)