build(deps): bump org.robolectric:robolectric from 4.14 to 4.14.1 #235
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
cancel-previous-workflows: | |
if: github.actor!= 'dependabot-preview[bot]' | |
env: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
name: Cancel previous workflow runs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
access_token: ${{ github.token }} | |
deploy: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Run Dokka Task | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: true | |
arguments: dokkaHtmlMultiModule --no-configuration-cache | |
- name: Deploy Documentations | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build/dokka/htmlMultiModule |