From 189877970ddde81753638e58d14635403ef6d53c Mon Sep 17 00:00:00 2001 From: Philipp Hock <philipp.hock@liu.se> Date: Thu, 31 Aug 2023 13:25:19 +0000 Subject: [PATCH] added gitlab pages support --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed34bce..1d60aa8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,16 @@ # The Docker image that will be used to build your app image: node:lts +# Functions that should be executed before the build script is run +before_script: + - npm i +pages: + script: + - npm run deploy + artifacts: + paths: + # The folder that contains the files to be exposed at the Page URL + - public + rules: + # This ensures that only pushes to the default branch will trigger + # a pages deploy + - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH -- GitLab