Skip to content

Keep using Groovy 3.x #95

Keep using Groovy 3.x

Keep using Groovy 3.x #95

Workflow file for this run

---
name: CD
on:
push:
branches:
- main
- master
jobs:
cd-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 8
- name: clean build
run: ./gradlew clean build dockerInfo --no-daemon --info --stacktrace
timeout-minutes: 10
...