diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d60fe637..6f597fe2a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,3 +60,16 @@ docs-deploy: # before_script: # - yarn # - yarn build + +pages: + stage: deploy + script: + - yarn build + - mv static public + variables: + NODE_ENV: production + artifacts: + paths: + - public + only: + - develop