diff options
author | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:28:22 +0000 |
---|---|---|
committer | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:28:22 +0000 |
commit | 4a5379bff8dbc0e8f7cfc1247b9de52765aad6ac (patch) | |
tree | 31aa097726ca6bd465e4bd9ae57a71b465feec03 /.gitlab-ci.yml | |
parent | 817abdff3642632c682cc8dc535635a83984da62 (diff) | |
download | standingwithresilience-4a5379bff8dbc0e8f7cfc1247b9de52765aad6ac.tar.gz standingwithresilience-4a5379bff8dbc0e8f7cfc1247b9de52765aad6ac.zip |
Update .gitlab-ci.yml to output to /public
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 |