mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-07 03:00:29 +01:00
21 lines
293 B
YAML
21 lines
293 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
|
|
- ls -lR
|
|
- mv $path/build/libs/*.jar $path/
|
|
artifacts:
|
|
paths:
|
|
- $path/*.jar
|