From 8d9bd73da65562672350381b9a07f89b65b9734c Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Tue, 14 Mar 2017 00:27:00 +0100 Subject: [PATCH] fixed the deploy stage for the staging environment --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87e6c1b..c505e89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,7 +74,8 @@ pages: - cp -a node_modules/utf8/utf8.js .public/node_modules/utf8/ - cp -a node_modules/quoted-printable/quoted-printable.js .public/node_modules/quoted-printable/ - cp -a node_modules/punycode/punycode.js .public/node_modules/punycode/ - - mv .public public/${CI_BUILD_REF_NAME} + - mkdir -p public/${CI_BUILD_REF_NAME} + - mv .public/* public/${CI_BUILD_REF_NAME}/ artifacts: paths: - public