From 857fa8f9adcbb0ce837ec310f8ba71ef5e3c965d Mon Sep 17 00:00:00 2001 From: LeshaInc Date: Wed, 25 Sep 2019 22:08:01 +0300 Subject: [PATCH] Copy build artifacts to GitLab Pages --- .gitlab-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8299031..2829e65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,4 +30,15 @@ build: - sbt assembly artifacts: paths: - - target/scala-2.13/ocelot-desktop-assembly-*.jar + - target/scala-2.13/ocelot-desktop-assembly-0.1.jar + +pages: + stage: deploy + before_script: [] + script: + - mkdir public + - cp target/scala-2.13/ocelot-desktop-assembly-0.1.jar public/ocelot.jar + artifacts: + paths: + - public +