mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
569 B
18 lines
569 B
name: 'Setup build environment' |
|
description: 'Sets up an environment for building Tusky' |
|
runs: |
|
using: "composite" |
|
steps: |
|
- uses: actions/setup-java@v4 |
|
with: |
|
java-version: '21' |
|
distribution: 'temurin' |
|
|
|
- name: Copy CI gradle.properties |
|
shell: bash |
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties |
|
|
|
- name: Gradle Build Action |
|
uses: gradle/actions/setup-gradle@v4 |
|
with: |
|
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
|
|
|