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 +