FabledSkyBlock/.gitlab-ci.yml

20 lines
280 B
YAML
Raw Normal View History

image: gradle:alpine
2018-11-22 23:23:56 +01:00
variables:
path: "/builds/$CI_PROJECT_PATH"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
stages:
- build
2018-11-22 23:23:56 +01:00
build:
stage: build
script:
- gradle build
- mv $path/build/libs/*.jar $path/
2018-11-22 23:23:56 +01:00
artifacts:
paths:
- $path/*.jar