Respackopts/.gitlab-ci.yml

28 lines
492 B
YAML
Raw Normal View History

2020-11-25 14:30:12 +01:00
image: gradle:alpine
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
build_test:
2020-11-25 14:30:12 +01:00
stage: deploy
script:
- gradle --build-cache assemble
- cp build/libs/* ./
- rm *-dev.jar
- mv *.jar latest.jar
2020-11-25 14:30:12 +01:00
artifacts:
paths:
- build/libs
- latest.jar
2020-11-25 14:30:12 +01:00
only:
- master
2020-12-21 16:00:43 +01:00
deploy:
stage: deploy
when: manual
2020-12-21 16:00:43 +01:00
script:
- gradle --build-cache publishModrinth
- gradle --build-cache curseforge