Skip to content

Update Kotlin/Compose #856

Update Kotlin/Compose

Update Kotlin/Compose #856

Workflow file for this run

name: build
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- 'trunk'
tags-ignore:
- '**'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 20
# For watchOS x86 simulator. Remove with Kotlin 1.8.
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.4.1'
- run: ./gradlew build assembleAndroidTest dokkaHtmlMultiModule
- name: Run Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 24
script: ./gradlew connectedCheck
- run: ./gradlew publish
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'cashapp/molecule' }}
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
- name: Deploy docs to website
if: ${{ github.ref == 'refs/heads/trunk' }}
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: site
FOLDER: build/dokka/htmlMultiModule
TARGET_FOLDER: docs/latest/
CLEAN: true