diff options
author | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:15:15 +0000 |
---|---|---|
committer | Standing With Resilience <standing.with.resilience@riseup.net> | 2016-08-28 07:15:15 +0000 |
commit | 817abdff3642632c682cc8dc535635a83984da62 (patch) | |
tree | 0c7aa6a8e4217418343625c9140d35f1c9bce747 | |
parent | 077b2181d9f8516d4476d85f339cd02fa6cbc8ad (diff) | |
download | standingwithresilience-817abdff3642632c682cc8dc535635a83984da62.tar.gz standingwithresilience-817abdff3642632c682cc8dc535635a83984da62.zip |
Add .gitlab-ci.yml
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..513da4d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: elecnix/ikiwiki + +test: + stage: test + script: + - cd backend; ikiwiki --setup ikiwiki.setup + only: + - branches + - tags + +pages: + stage: deploy + script: + - cd backend; ikiwiki --setup ikiwiki.setup + artifacts: + paths: + - html + only: + - master |