From c6df827d87c876c1e719a9fa7915e600364254a0 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Tue, 9 May 2023 10:45:38 +0200 Subject: [PATCH] deploy pages for all branches --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a622711b..a27054f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,13 +9,13 @@ cache: - node_modules/ pages: - only: - - main + # only: + # - main script: - NUXT_APP_BASE_URL=/wiki/ npm run generate - - rm -rf public - - mv .output/public public + # - rm -rf public + # - mv .output/public public artifacts: paths: # The folder that contains the files to be exposed at the Page URL - - public + - .output/public -- GitLab