mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-11-17 00:22:32 +01:00
Added rudimentary gitlab-ci integration
This commit is contained in:
parent
b4ab20a939
commit
537ef30e88
32
.gitlab-ci.yml
Executable file
32
.gitlab-ci.yml
Executable file
@ -0,0 +1,32 @@
|
|||||||
|
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
|
@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
|
- [2020-06-23] Added Gitlab CI integration by [@lflare].
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user