All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Reviewed-on: #1 Co-authored-by: Josh Chester <numbers@softwaresmyth.com> Co-committed-by: Josh Chester <numbers@softwaresmyth.com>
18 lines
497 B
YAML
18 lines
497 B
YAML
name: Build with cached gradle
|
|
run-name: Building for ${{ gitea.actor }}
|
|
on: [label]
|
|
|
|
jobs:
|
|
Build-with-gradle:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-java@v5
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: '22'
|
|
cache: 'gradle'
|
|
# cache-dependency-path: | # optional
|
|
# sub-project/*.gradle*
|
|
# sub-project/**/gradle-wrapper.properties
|
|
- run: ./gradlew build --no-daemon |