From 9cde9aa95a2edc123da3ad0e862e18473b1e7daa Mon Sep 17 00:00:00 2001 From: Anselm Stordeur Date: Wed, 28 Nov 2018 18:50:23 +0100 Subject: [PATCH] ci: move docs to public folder --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6e588c28..6cea6811 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,22 +18,22 @@ build: stage: build script: - npm run build - artifacts: - untracked: true - paths: - - node_modules/ test: stage: test script: - npm test + artifacts: + paths: + - coverage docs: stage: publish script: - npm run documentation + - mv docs public only: - /^v[0-9]+\.[0-9]+\.[0-9]+$/ artifacts: paths: - - docs + - public