]> xenbits.xensource.com Git - libvirt.git/commitdiff
gitlab-ci: Configure website build to be published via gitlab pages
authorPeter Krempa <pkrempa@redhat.com>
Mon, 3 Apr 2023 14:02:05 +0000 (16:02 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Fri, 19 Jan 2024 14:51:47 +0000 (15:51 +0100)
On pushes to master publish the webpage (built in the 'website_job' job)
via gitlab pages. The 'pages' job uses the default image that gitlab
assumes as it's consuming artifacts from an existing job and naming
them properly.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
.gitlab-ci.yml

index 81433652ae34d6c677867ef46a8d06f8c4d85434..b0e2724706459444767a90f22987bba4fad3e9eb 100644 (file)
@@ -6,6 +6,7 @@ stages:
   - builds
   - integration_tests
   - sanity_checks
+  - pages
 
 .script_variables: &script_variables |
   export CCACHE_BASEDIR="$(pwd)"
@@ -85,6 +86,23 @@ website_job:
     NAME: almalinux-8
     TARGET_BASE_IMAGE: docker.io/library/almalinux:8
 
+# On push to master publish the website from 'website_job' via gitlab pages
+pages:
+  stage: pages
+  script:
+    - mv website public
+  dependencies:
+    - website_job
+  rules:
+    - if: '$CI_PROJECT_NAMESPACE == $RUN_UPSTREAM_NAMESPACE && $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
+      when: on_success
+    - when: never
+  artifacts:
+    expose_as: 'pages'
+    name: 'pages'
+    paths:
+      - public
+
 .codestyle_job:
   stage: sanity_checks
   needs: