diff options
| author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 14:23:47 +0200 | 
|---|---|---|
| committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 14:28:26 +0200 | 
| commit | 21f3b9ba7f8a0f4b07e07a40adcb016a23e5c0fe (patch) | |
| tree | 9a0bef8e1ed706e5d85f0529a043f51b58c74d5f | |
| parent | 20455b401e79b33687318aff91a7379503a5b748 (diff) | |
| download | reddit-nextcloud-importer-21f3b9ba7f8a0f4b07e07a40adcb016a23e5c0fe.tar.gz reddit-nextcloud-importer-21f3b9ba7f8a0f4b07e07a40adcb016a23e5c0fe.tar.bz2 reddit-nextcloud-importer-21f3b9ba7f8a0f4b07e07a40adcb016a23e5c0fe.zip | |
feat: Add page build to the pipeline
| -rw-r--r-- | .gitlab-ci.yml | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6e7ec8..33827f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,3 +43,18 @@ test:      reports:        junit: report.xml +pages: +  needs: [ "test" ] +  image: node:10 +  stage: build +  script: +    - npm install gitbook-cli -g +    - gitbook fetch 3.2.3 +    - gitbook install +    - gitbook build . public +  artifacts: +    paths: +      - public +  only: +    - master + | 
