1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00
mangadex_at_home/.gitlab-ci.yml
2020-06-23 09:06:23 +08:00

33 lines
611 B
YAML
Executable file

image: "alpine"
stages:
- build
- publish
cache:
paths:
- build/libs/
build:
image: openjdk:8
stage: build
script:
- ./gradlew build
publish:
image: alpine
stage: publish
only:
- tags
before_script:
- apk update
- apk add git zip
script:
- export VERSION=`git describe --tags --dirty`
- cp build/libs/mangadex_at_home-${VERSION}-all.jar ./
- zip -r9 mangadex_at_home-${VERSION}.zip mangadex_at_home-${VERSION}-all.jar settings.sample.json
artifacts:
name: "mangadex_at_home-${CI_COMMIT_TAG}"
paths:
- "*.jar"
- settings.sample.json