From 0e9cf6ae74b5b0bb51b7d3001b6e512d8fbe730e Mon Sep 17 00:00:00 2001 From: Lars Simon Winzer Date: Wed, 1 Apr 2026 22:17:02 +0200 Subject: [PATCH 1/2] Ci: Add GitLab Pages deployment job for outreach website --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1e9f56..33162a6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ stages: - report - build - test + - deploy # Reusable definitions .gradle-cache: &gradle-cache @@ -119,3 +120,14 @@ test: allow_failure: false - if: '$CI_COMMIT_BRANCH' allow_failure: true + +pages: + stage: deploy + script: + - mkdir -p public + - cp -r outreach/* public/ + artifacts: + paths: + - public/ + rules: + - when: manual -- 2.52.0 From 521982f7fcbbd469505ca97d5268b52f943147bd Mon Sep 17 00:00:00 2001 From: Lars Simon Winzer Date: Wed, 1 Apr 2026 22:27:25 +0200 Subject: [PATCH 2/2] Revert "Ci: Add GitLab Pages deployment job for outreach website" This reverts commit 0e9cf6ae74b5b0bb51b7d3001b6e512d8fbe730e. --- .gitlab-ci.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33162a6..c1e9f56 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,6 @@ stages: - report - build - test - - deploy # Reusable definitions .gradle-cache: &gradle-cache @@ -120,14 +119,3 @@ test: allow_failure: false - if: '$CI_COMMIT_BRANCH' allow_failure: true - -pages: - stage: deploy - script: - - mkdir -p public - - cp -r outreach/* public/ - artifacts: - paths: - - public/ - rules: - - when: manual -- 2.52.0