aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-11-05 10:42:57 +0100
committerGerd Hoffmann <kraxel@redhat.com>2020-11-05 10:42:57 +0100
commitd66d57063582237627d5d0acfb1127cc2ab9fd3f (patch)
treed40acdb07376818aa6dc9ba5de00897b5f50988e /.gitlab-ci.yml
parent61fafa70bd5075e6807c7c0fe3ecf0c98c97a5da (diff)
downloadimagefish-d66d57063582237627d5d0acfb1127cc2ab9fd3f.tar.gz
publish images
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e14ea25..8bb1f13 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,6 @@
stages:
- images
+ - publish
image_fedora:
stage: images
@@ -10,3 +11,18 @@ image_fedora:
artifacts:
paths:
- Fedora-*.qcow2
+
+pages:
+ stage: publish
+ image: registry.gitlab.com/kraxel/rpm-package-builder:fedora
+ dependencies:
+ - image_fedora
+ script:
+ - mkdir public
+ - mv *.qcow2 public
+ - tree -T "$CI_PROJECT_NAME rpms" --charset utf8 -H . public > index.html
+ - mv index.html public
+ artifacts:
+ paths:
+ - public/
+