diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-09 09:07:26 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-09 09:07:26 +0100 |
commit | e64352b9dca9401c39b9babee9094534f137646b (patch) | |
tree | 3b0033d7c13e4b2affc556e823dfa013a383e020 | |
parent | 5c74fe7820a262f61ac1ef7a7543ac903e023dc6 (diff) | |
download | imagefish-e64352b9dca9401c39b9babee9094534f137646b.tar.gz |
try create listing
-rw-r--r-- | .gitlab-ci.yml | 6 | ||||
-rw-r--r-- | pages/footer.html | 2 | ||||
-rw-r--r-- | pages/header.html | 7 |
3 files changed, 13 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d787c3..424235b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,10 +74,12 @@ pages: script: - mkdir public - for d in centos7 centos8 fedora wsl; do mv -v ${d}/index.html public/${d}.html; done + - cat pages/header.html > listing.html + - grep "href.*xz" public/${d}.html >> listing.html + - cat pages/footer.html >> listing.html + - mv -v listing.html public - tree --charset utf8 -T "images" -H . public > index.html - mv -v index.html public - - printenv | grep ^CI_ artifacts: paths: - public/ - diff --git a/pages/footer.html b/pages/footer.html new file mode 100644 index 0000000..2ab5c0d --- /dev/null +++ b/pages/footer.html @@ -0,0 +1,2 @@ + </body> +</html> diff --git a/pages/header.html b/pages/header.html new file mode 100644 index 0000000..1c4588a --- /dev/null +++ b/pages/header.html @@ -0,0 +1,7 @@ +<html> + <head> + <title>imagefish artifacts</title> + <link rel="stylesheet" type="text/css" href="http://kraxel.gitlab.io/baseline.css" /> + </head> + <body> + <h1>imagefish artifacts</h1> |