diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 09:05:42 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 09:05:42 +0100 |
commit | c438e8926a26cf1dac03f3e5ca70280e31a0fb11 (patch) | |
tree | aeb3367a8737b38a12a3285c85317df2b58c856f /.gitlab-ci.yml | |
parent | 1e44a2e69bea8556feda47077560d7fcca517d82 (diff) | |
download | imagefish-c438e8926a26cf1dac03f3e5ca70280e31a0fb11.tar.gz |
ci: add centos to pages
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0ea4c7..0de7173 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -56,9 +56,13 @@ pages: image: registry.gitlab.com/kraxel/rpm-package-builder:fedora dependencies: - fedora + - centos8 + - centos7 script: - mkdir public - - mv fedora/index.html public + - for d in fedora centos8 centos7; do mv -v ${d}/index.html public/${d}.html + - tree --charset utf8 -T "images" -H . public > index.html + - mv -v index.html public artifacts: paths: - public/ |