Make AuthFoundationDefaults configurable by other SDKs #31
Workflow file for this run
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: Dokka Docs | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 18 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build docs | |
run: ./gradlew dokkaHtmlMultiModule | |
- name: Publish To Maven Local | |
run: ./gradlew publishToMavenLocal |