Add .gitlab-ci.yml

This commit is contained in:
J. Fronny 2020-11-25 13:30:12 +00:00
parent 4b8c18aab2
commit 64f2373877

16
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,16 @@
image: gradle:alpine
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
deploy:
stage: deploy
script: gradle --build-cache assemble
artifacts:
paths:
- build/libs
only:
- master