fix(deps): update androix.lifecycle to v2.11.0 (#486) #450
This file contains hidden or 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: gradle-dokka | |
| on: | |
| push: | |
| branches: [ develop ] | |
| env: | |
| CI: "true" | |
| jobs: | |
| gradle-dokka: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'adopt' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| with: | |
| cache-read-only: ${{ github.ref != 'refs/heads/develop' }} | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Generate docs with dokka | |
| run: ./gradlew --no-daemon dokkaGenerate | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.8.0 | |
| with: | |
| branch: docs # The branch the action should deploy to. | |
| folder: dokka-docs # The root Dokka V2 publication output. |