From 499ce7a2b98b561744e0dfe7829977a48f1f87d4 Mon Sep 17 00:00:00 2001 From: Pierre Smeyers <pierre.smeyers@gmail.com> Date: Sun, 11 Aug 2024 15:51:14 +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 e0b1e18..ec90f95 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add the following to your `.gitlab-ci.yml`: ```yaml include: # 1: include the component - - component: gitlab.com/to-be-continuous/semantic-release/gitlab-ci-semrel@3.11.2 + - component: $CI_SERVER_FQDN/to-be-continuous/semantic-release/gitlab-ci-semrel@3.11.2 # 2: set/override component inputs inputs: changelog-enabled: true # ⚠ this is only an example @@ -379,9 +379,9 @@ With: ```yaml include: # main template - - component: gitlab.com/to-be-continuous/semantic-release/gitlab-ci-semrel@3.11.2 + - component: $CI_SERVER_FQDN/to-be-continuous/semantic-release/gitlab-ci-semrel@3.11.2 # Vault variant - - component: gitlab.com/to-be-continuous/semantic-release/gitlab-ci-semrel-vault@3.11.2 + - component: $CI_SERVER_FQDN/to-be-continuous/semantic-release/gitlab-ci-semrel-vault@3.11.2 inputs: vault-base-url: "https://vault.acme.host/v1" # audience claim for JWT -- GitLab