DynRes/.gitlab-ci.yml

18 lines
288 B
YAML

image: gradle:alpine
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
- chmod a+x gradlew
deploy:
stage: deploy
script: ./gradlew --build-cache assemble
artifacts:
paths:
- build/libs
only:
- master