BreakMe/.gitlab-ci.yml

20 lines
289 B
YAML
Raw Normal View History

2020-08-06 21:29:45 +02:00
image: gradle:alpine
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
deploy:
2020-09-05 13:16:14 +02:00
tags:
- windows
2020-08-06 21:29:45 +02:00
stage: deploy
2020-09-05 13:16:14 +02:00
script: |
gradle --build-cache assemble
2020-08-06 21:29:45 +02:00
artifacts:
paths:
- build/libs
only:
- master