diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-09 15:56:30 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-09 15:56:30 +0100 |
commit | 89530012357fdb77076d08475dfb68ba5dc1af27 (patch) | |
tree | c01ed0346b1c262bfbc1d980e9f9f4aa826a1f87 | |
parent | c9461b498690214ad643b509d9c2589a1d591ec6 (diff) | |
download | imagefish-89530012357fdb77076d08475dfb68ba5dc1af27.tar.gz |
tweak regex
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 21262a7..c98450b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -79,9 +79,9 @@ pages: - for d in centos7 centos8 fedora wsl; do mv -v ${d}/index.html public/${d}.html; done - cat pages/header.html > listing.html - cat pages/efi.html >> listing.html - - cat public/*.html | grep "href.*efi.*xz" >> listing.html + - cat public/*.html | grep "href.*qcow2.xz" >> listing.html - cat pages/wsl.html >> listing.html - - cat public/*.html | grep "href.*wsl.*xz" >> listing.html + - cat public/*.html | grep "href.*tar.xz" >> listing.html - cat pages/footer.html >> listing.html - mv -v listing.html public - tree --charset utf8 -T "images" -H . public > tree.html |