1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-08-02 09:29:35 +00:00
kickc/.gitlab-ci.yml
2018-09-30 12:08:42 +02:00

21 lines
343 B
YAML

image: maven:3-jdk-8
compile:
stage: build
script:
- "mvn package"
artifacts:
expire_in: 5mins
paths:
- target/kickc-release.zip
release:
stage: deploy
script:
- "ls target"
- "unzip -d target/release target/kickc-release.zip"
artifacts:
name: kickc_${CI_BUILD_REF_NAME}
paths:
- ./target/release/*