mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-07 03:00:29 +01:00
17 lines
218 B
YAML
17 lines
218 B
YAML
image: gradle:alpine
|
|
|
|
before_script:
|
|
- export GRADLE_USER_HOME=`pwd`/.gradle
|
|
|
|
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- gradle build
|
|
- mv build/libs/*.jar .
|
|
artifacts:
|
|
paths:
|
|
- ./*.jar
|