diff options
author | Carlos Soriano <csoriano1618@gmail.com> | 2018-10-09 16:54:05 +0000 |
---|---|---|
committer | Carlos Soriano <csoriano@redhat.com> | 2018-10-09 20:01:13 +0200 |
commit | e558bc699e2765ac27f88a0581fe3e2d3d8f3973 (patch) | |
tree | bb28f9ea067c058fe6cedc406d6144d1401d3913 /.gitlab-ci.yml | |
parent | e37be635352c0deef4144251c3238be4735ce937 (diff) | |
download | nautilus-e558bc699e2765ac27f88a0581fe3e2d3d8f3973.tar.gz |
CI: Fix coverage in pages
Wrong path for the html file...
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e22eb2f80..2c8ce9d60 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -212,9 +212,10 @@ pages: stage: deploy script: - mkdir public - - mv _build/coverage.html ${CI_PROJECT_DIR}/public/coverage/index.html + - mv _build/coverage.html ${CI_PROJECT_DIR}/public/index.html artifacts: paths: - public + only: - - master + - master
\ No newline at end of file |