diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-22 07:45:35 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-22 07:45:35 +0100 |
commit | 5905252371c280be8d0646247e5fa8b7c40bd5bf (patch) | |
tree | efaa8b2a77532581b4dff16eb4de09e0d337806a | |
parent | bb0efe207066f0cae79892fd6277aa55b95e982f (diff) | |
download | rpm-package-builder-5905252371c280be8d0646247e5fa8b7c40bd5bf.tar.gz |
try simplify repo
-rw-r--r-- | gitlab-ci-rpms-tito.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gitlab-ci-rpms-tito.yml b/gitlab-ci-rpms-tito.yml index 5a1a8e7..cd99502 100644 --- a/gitlab-ci-rpms-tito.yml +++ b/gitlab-ci-rpms-tito.yml @@ -37,15 +37,13 @@ tito_centos7: pages: stage: repo image: registry.gitlab.com/kraxel/rpm-package-builder:fedora - dependencies: - - tito_fedora - - tito_centos8 - - tito_centos7 +# dependencies: +# - tito_fedora +# - tito_centos8 +# - tito_centos7 script: - mkdir public - - mv rpms-fedora public/fedora - - mv rpms-centos8 public/centos8 - - mv rpms-centos7 public/centos7 + - for dir in rpms-*; do mv -v $dir public/${dir#rpms-}; done - tree -T "$CI_PROJECT_NAME rpms" --charset utf8 -H . public > index.html - mv index.html public artifacts: |