From cca21bc69a8d6575bce36d211e4f3fd408e78570 Mon Sep 17 00:00:00 2001 From: Noah Wendt <noah.wendt@stud.h-da.de> Date: Sun, 2 Mar 2025 16:55:28 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed34bce..6c70e9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,10 @@ -# The Docker image that will be used to build your app -image: node:lts +pages: + script: + - mkdir .public + - mv * .public + - mv .public public + artifacts: + paths: + - public + only: + - main -- GitLab