diff options
author | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:33:47 +0000 |
---|---|---|
committer | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:33:47 +0000 |
commit | e644d6767281612dd2b6a2e362f4c440503ee241 (patch) | |
tree | 0c4f559468c4ba93ad1168049dbdafcaf2192b33 | |
parent | 4a5379bff8dbc0e8f7cfc1247b9de52765aad6ac (diff) | |
download | standingwithresilience-e644d6767281612dd2b6a2e362f4c440503ee241.tar.gz standingwithresilience-e644d6767281612dd2b6a2e362f4c440503ee241.zip |
Update .gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 14cf22c..adbc034 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,13 @@ image: elecnix/ikiwiki +before_script: + - apt-get install -y curl + test: stage: test script: - - cd backend; ikiwiki --setup ikiwiki.setup ../wiki ../public + - cd backend; ikiwiki --setup ikiwiki.setup + - mv html public only: - branches - tags @@ -11,7 +15,8 @@ test: pages: stage: deploy script: - - cd backend; ikiwiki --setup ikiwiki.setup ../wiki ../public + - cd backend; ikiwiki --setup ikiwiki.setup + - mv html public artifacts: paths: - public |