Setup GitHub action to generate the documentation of the SDK from develop branch
This commit is contained in:
parent
019ec6c1c8
commit
a7d85cf9fd
|
@ -0,0 +1,22 @@
|
||||||
|
name: Documentation
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ develop ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docs:
|
||||||
|
name: Generate and publish Android Matrix SDK documentation
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build docs
|
||||||
|
run: ./gradlew dokkaHtml
|
||||||
|
|
||||||
|
- name: Deploy docs
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: ./matrix-sdk-android/build/dokka/html
|
Loading…
Reference in New Issue