foundation/.gitlab-ci.yml
2021-12-22 06:55:47 +00:00

19 lines
339 B
YAML

image: gradle:7.3-jdk17
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
build:
stage: build
script: gradle --build-cache assemble
cache:
key: "$CI_COMMIT_REF_NAME"
policy: push
paths:
- build
- .gradle
artifacts:
paths:
- "build/manifests/update.json"
- "**/build/libs/*-plugin.jar"