mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-07 03:00:29 +01:00
20 lines
276 B
YAML
20 lines
276 B
YAML
image: gradle:alpine
|
|
|
|
variables:
|
|
path: "/builds/$CI_PROJECT_PATH"
|
|
|
|
before_script:
|
|
- export GRADLE_USER_HOME=$path/.gradle
|
|
|
|
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- gradle build
|
|
- mv ./build/libs/*.jar $path/
|
|
artifacts:
|
|
paths:
|
|
- $path/*.jar
|