BreakMe/.gitlab-ci.yml
2020-09-05 11:16:14 +00:00

20 lines
289 B
YAML

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