From 7e72a4fb41f51f17f3fa6ca9fb12b26cc4cd7502 Mon Sep 17 00:00:00 2001 From: Pierre Smeyers <pierre.smeyers@gmail.com> Date: Sun, 11 Aug 2024 15:48:12 +0200 Subject: [PATCH] docs: use variabilized GitLab server FQDN in CI/CD component reference URLs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2f6afe8..b246a46 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`: ```yaml include: # 1: include the component - - component: gitlab.com/to-be-continuous/maven/gitlab-ci-maven@3.11.1 + - component: $CI_SERVER_FQDN/to-be-continuous/maven/gitlab-ci-maven@3.11.1 # 2: set/override component inputs inputs: # ⚠ this is only an example @@ -526,7 +526,7 @@ All authentication methods should use masked GitLab environment variables. ```yaml include: # main template - - component: gitlab.com/to-be-continuous/maven/gitlab-ci-maven@3.11.1 + - component: $CI_SERVER_FQDN/to-be-continuous/maven/gitlab-ci-maven@3.11.1 # Jib is implemented as an extension to Maven, and uses supporting features of the TBC Maven template - - component: gitlab.com/to-be-continuous/maven/gitlab-ci-maven-jib@3.11.1 + - component: $CI_SERVER_FQDN/to-be-continuous/maven/gitlab-ci-maven-jib@3.11.1 ``` -- GitLab