From 79cdba21fb6094c15170f2719bb6bbe117ee871a Mon Sep 17 00:00:00 2001 From: Jeff Blaine Date: Wed, 23 Jul 2025 18:17:16 -0400 Subject: [PATCH] Fix examples to show include statement --- ci-and-sdks/ci-integrations/gitlab-templates-for-jfrog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci-and-sdks/ci-integrations/gitlab-templates-for-jfrog.md b/ci-and-sdks/ci-integrations/gitlab-templates-for-jfrog.md index 1aacd30e..84892dc8 100644 --- a/ci-and-sdks/ci-integrations/gitlab-templates-for-jfrog.md +++ b/ci-and-sdks/ci-integrations/gitlab-templates-for-jfrog.md @@ -47,12 +47,14 @@ include: You also have the option of downloading the matching script from [releases.jfrog.io](https://releases.jfrog.io/artifactory/jfrog-cli/gitlab/v2/), adding it to your project, and including it in your pipeline as follows: ```yaml +include: - local: '.setup-jfrog-unix.yml' ``` You can also include it from one of your projects as follows: ```yaml +include: - project: 'my-group/my-project' file: '/script/.setup-jfrog-unix.yml' ```