From daffc67839f1eb2b312bc58c2a8a3822cae4d3ec Mon Sep 17 00:00:00 2001 From: Kai-Holger Brassel <mail@khbrassel.de> Date: Mon, 7 Dec 2020 09:20:14 +0000 Subject: [PATCH] Correct syntax error in .gitlab-ci.yml --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 02711ec..adae41a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,3 @@ -# This file is a template, and might need editing before it works on your project. -# Full project: https://gitlab.com/pages/plain-html variables: EXPORT_DIR: "/var/www/html/pages" @@ -8,8 +6,8 @@ pages-master: script: - mkdir "$EXPORT_DIR/$CI_PROJECT_NAME" - cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME" - tags: - - production + tags: + - production artifacts: paths: - public -- GitLab