Update dependency androidx.activity:activity-compose to v1.10.0 (#771) #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ReleaseDocs | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish_dokka: | |
name: Dokka docs | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4.2.2 | |
with: | |
ref: main | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4.6.0 | |
with: | |
distribution: adopt | |
java-version: 17 | |
- name: Generate Dokka HTML docs | |
run: ./gradlew dokkaHtmlMultimodule | |
- name: Deploy to GitHub pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/dokka/htmlMultiModule | |
publish_branch: gh-pages |