mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
79982af8d1
This reverts commit 7f2484ca4c
.
23 lines
501 B
YAML
23 lines
501 B
YAML
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
|