From 77c8f4639907313d897fcf6a4cf1cf2f27d8ac9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Schr=C3=B6tler?= <niklas@allround.digital> Date: Mon, 11 Dec 2023 19:54:21 +0100 Subject: [PATCH] CI: Attempting to fix Pages deploy --- .gitlab-ci.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1b8371b..cfd1838 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,6 @@ image: alpine:latest stages: - qa - build - - deploy sonarqube-check: stage: qa @@ -29,18 +28,11 @@ build: script: - npm install - npm run build - artifacts: - paths: - - build/ - -pages: - stage: deploy - script: - rm -rf public - mkdir public - mv build/* public artifacts: paths: - - public/ + - build/ only: - - master + - master -- GitLab