aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: d8370147b577319168e0a4a1c54d2dadd9ba44f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
stages:
  - images
  - publish

image_fedora:
  stage: images
  image: registry.gitlab.com/kraxel/rpm-package-builder:fedora
  before_script:
    - dnf install -y /usr/bin/guestfish
  script:
    - ./Fedora-efi-grub2.sh
  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 -s -h -T "qemu images" --charset utf8 -H . public > index.html
    - mv index.html public
  artifacts:
    paths:
      - public/