diff options
author | Evan Read <eread@gitlab.com> | 2018-10-04 09:57:18 +1000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2018-10-04 10:12:06 +1000 |
commit | 476c44ae5e1a9fd50bd867dc38fdf0d9d42a9f44 (patch) | |
tree | 54dce8112527cce83f8532cf2257235a2c68d997 /.gitlab-ci.yml | |
parent | dfb9ac3a5f97a4c556bacea78174836fe7d39145 (diff) | |
download | gitlab-ce-476c44ae5e1a9fd50bd867dc38fdf0d9d42a9f44.tar.gz |
Change image for docs linting
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 2a299ea79ef..c652b6c75e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -606,7 +606,7 @@ static-analysis: docs lint: <<: *dedicated-runner <<: *except-qa - image: "registry.gitlab.com/gitlab-org/gitlab-build-images:nanoc-bootstrap-ruby-2.4-alpine" + image: "registry.gitlab.com/gitlab-org/gitlab-build-images:gitlab-docs-lint" stage: test cache: {} dependencies: [] @@ -614,8 +614,8 @@ docs lint: script: - scripts/lint-doc.sh - scripts/lint-changelog-yaml - - mv doc/ /nanoc/content/ - - cd /nanoc + - mv doc/ /tmp/gitlab-docs/content/ + - cd /tmp/gitlab-docs # Build HTML from Markdown - bundle exec nanoc # Check the internal links |