Translater/.gitlab-ci.yml
2020-07-13 15:21:23 +00:00

19 lines
294 B
YAML

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