Files
Ornot/.gitea/workflows/build.yml
Josh Chester 6ad62b8339
All checks were successful
Build with cached gradle / Build-with-gradle (push) Successful in 2m16s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
fiddle
2026-01-23 22:10:43 -06:00

18 lines
499 B
YAML

name: Build with cached gradle
run-name: Building for ${{ gitea.actor }}
on: [push]
jobs:
Build-with-gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '22'
cache: 'gradle'
# cache-dependency-path: | # optional
# sub-project/*.gradle*
# sub-project/**/gradle-wrapper.properties
- run: ./gradlew build --no-daemon