minions-plus/.gitlab-ci.yml

19 lines
217 B
YAML

image: java:8-jdk
before_script:
- chmod 777 ./*
stages:
- build
build:
stage: build
script:
- ./gradlew clean build
artifacts:
name: latest
paths:
- ./target/*.jar
only:
- master