diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index beafaf96..2c5fa438 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -180,6 +180,24 @@ build-release-file: - rsync -vAax "${DOCROOT}" "${DOCROOT}/.babelrc" "${DOCROOT}/.browserslistrc" release/ - rsync -vAax public/assets release/public/ +pages: + image: node:alpine + stage: release + dependencies: + - test + script: + - rm -rf public + - mv coverage public + - cp unittests.xml public/ + artifacts: + expire_in: 1 week + paths: + - public + only: + - master + variables: + GIT_STRATEGY: none + # # Deploy staging #