UltimateTimber/.gitlab-ci.yml
2019-04-22 18:34:31 -06:00

20 lines
280 B
YAML

image: gradle:alpine
variables:
path: "/builds/$CI_PROJECT_PATH"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
stages:
- build
build:
stage: build
script:
- gradle build
- mv $path/build/libs/*.jar $path/
artifacts:
paths:
- $path/*.jar