mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
ef6594b88a
Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
585 B
YAML
24 lines
585 B
YAML
name: Setup Java and Gradle
|
|
description: Temurin JDK 17 + Gradle wrapper with dependency and build cache
|
|
|
|
inputs:
|
|
java-architecture:
|
|
description: Optional JDK architecture (x64). Omit for host default.
|
|
required: false
|
|
default: ""
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: "17"
|
|
architecture: ${{ inputs.java-architecture }}
|
|
|
|
- uses: gradle/actions/setup-gradle@v4
|
|
with:
|
|
gradle-version: wrapper
|
|
cache-read-only: false
|
|
add-job-summary: true
|