2022-05-11 11:00:24 +02:00
|
|
|
name: Documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ develop ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
name: Generate and publish Android Matrix SDK documentation
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-11-01 00:08:36 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-05-11 11:00:24 +02:00
|
|
|
|
|
|
|
- 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
|