All checks were successful
Build / build (pull_request) Successful in 4m54s
This commit updates the CI build and release workflows by making the following changes: - Updates the Java setup action to version 3. - Changes the JDK distribution to 'temurin'. - Adds a step to set up the Android SDK using `android-actions/setup-android@v3`. These changes apply to both `build.yaml` and `release.yaml` files.
27 lines
487 B
YAML
27 lines
487 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
|
|
- name: Setup Android SDK
|
|
uses: android-actions/setup-android@v3
|
|
|
|
- name: Build with Gradle
|
|
run: ./gradlew composeApp:buildDebug
|