minions-plus/.gitlab-ci.yml

20 lines
240 B
YAML

2019-06-21 19:14:55 +07:00
image: java:8-jdk
before_script:
- chmod 777 ./*
stages:
- build
build:
stage: build
script:
- ./gradlew clean build
artifacts:
name: latest
paths:
- ./target/*.jar
2019-09-21 05:28:23 +07:00
expire_in: 30 days
2019-06-21 19:14:55 +07:00
only:
- master