diff options
| author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 17:56:00 +0200 | 
|---|---|---|
| committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 17:56:00 +0200 | 
| commit | 0c3e8d7cccd71e4507ec0ad006614b663eb5e4b9 (patch) | |
| tree | 8d86a1aa68ed7b5bd4ae064bbb47426c284c96cd | |
| parent | 701fafb43838db849da60fa209cf642713f38f0b (diff) | |
| download | reddit-nextcloud-importer-0c3e8d7cccd71e4507ec0ad006614b663eb5e4b9.tar.gz reddit-nextcloud-importer-0c3e8d7cccd71e4507ec0ad006614b663eb5e4b9.tar.bz2 reddit-nextcloud-importer-0c3e8d7cccd71e4507ec0ad006614b663eb5e4b9.zip | |
feat: Move from gitbook to pandoc
Gitbook is too much for a single README page.
| -rw-r--r-- | .gitlab-ci.yml | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51df12b..fc8eea9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,13 +45,11 @@ test:  pages:    needs: [ "test" ] -  image: node:10 +  image: pandoc/alpine    stage: build    script: -    - npm install gitbook-cli -g -    - gitbook fetch 3.2.3 -    - gitbook install -    - gitbook build . public +    - mkdir public +    - pandoc --standalone README.md -o public/index.html    artifacts:      paths:        - public | 
