From 81c09e333630992ffe5185d0097367dc78ac069b Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Thu, 27 Mar 2025 17:00:26 +0100 Subject: [PATCH] gitlab-ci: Don't hardcode release version Thanks to Jan Tojnar who found a work-around: https://gitlab.gnome.org/GNOME/calls/-/merge_requests/770 This uses the artifacts:reports:dotenv feature to pass environment variables to the deploy stage: https://docs.gitlab.com/ci/variables/#pass-an-environment-variable-to-another-job I didn't test the change with the sandbox yet. --- .gitlab-ci.yml | 5 ++++- MAINTAINERS.md | 3 --- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6042bdaa..a9e565aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ include: - component: "gitlab.gnome.org/GNOME/citemplates/release-service@master" inputs: dist-job-name: "dist" - tarball-artifact-path: "libxml2-dist/libxml2-2.15.0.tar.xz" + tarball-artifact-path: "${TARBALL_ARTIFACT_PATH}" .test: image: registry.gitlab.gnome.org/gnome/libxml2 @@ -300,9 +300,12 @@ dist: image: registry.gitlab.gnome.org/gnome/libxml2 script: - sh .gitlab-ci/dist.sh + - echo "TARBALL_ARTIFACT_PATH=$(ls libxml2-dist/*.tar.xz)" >> build.env artifacts: paths: - libxml2-dist/*.tar.xz + reports: + dotenv: build.env pages: script: diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 952d4300..9aa75f6f 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -52,9 +52,6 @@ You can get started by running Update the version number in `VERSION` if you haven't done so already. -IMPORTANT: Update the version number of `tarball-artifact-path` in -`.gitlab-ci.yml`. This must be done manually for now. - ### Commit and verify tarball Release tarballs are generated with a CI job and the `.gitlab-ci/dist.sh`