diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 513da4d..14cf22c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: elecnix/ikiwiki test: stage: test script: - - cd backend; ikiwiki --setup ikiwiki.setup + - cd backend; ikiwiki --setup ikiwiki.setup ../wiki ../public only: - branches - tags @@ -11,9 +11,9 @@ test: pages: stage: deploy script: - - cd backend; ikiwiki --setup ikiwiki.setup + - cd backend; ikiwiki --setup ikiwiki.setup ../wiki ../public artifacts: paths: - - html + - public only: - master |