From 09dd05ac72729fc4b5145fb0d4c55e7a2f22707d Mon Sep 17 00:00:00 2001
From: Toby Jackson <toby@warmfusion.co.uk>
Date: Fri, 12 Jan 2024 05:27:01 +0000
Subject: [PATCH] Indicated the Artifacts:paths can accept CI expansion

```yaml
job:
  variables:
    EXAMPLE: filename
  ...
  artifacts:
    paths:
      - ${EXAMPLE}.yaml
```
---
 doc/ci/variables/where_variables_can_be_used.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/doc/ci/variables/where_variables_can_be_used.md b/doc/ci/variables/where_variables_can_be_used.md
index 3db59423c628..4ea45c9bae4e 100644
--- a/doc/ci/variables/where_variables_can_be_used.md
+++ b/doc/ci/variables/where_variables_can_be_used.md
@@ -27,6 +27,7 @@ There are two places defined variables can be used. On the:
 |:----------------------------------------------------------------------|:-----------------|:-----------------------|:------------|
 | [`after_script`](../yaml/index.md#after_script)                       | yes              | Script execution shell | The variable expansion is made by the [execution shell environment](#execution-shell-environment). |
 | [`artifacts:name`](../yaml/index.md#artifactsname)                    | yes              | Runner                 | The variable expansion is made by GitLab Runner's shell environment. |
+| [`artifacts:paths`](../yaml/index.md#artifactspaths)                  | yes              | Runner                 | The variable expansion is made by GitLab Runner's shell environment. |
 | [`before_script`](../yaml/index.md#before_script)                     | yes              | Script execution shell | The variable expansion is made by the [execution shell environment](#execution-shell-environment) |
 | [`cache:key`](../yaml/index.md#cachekey)                              | yes              | Runner                 | The variable expansion is made by GitLab Runner's [internal variable expansion mechanism](#gitlab-runner-internal-variable-expansion-mechanism). |
 | [`cache:policy`](../yaml/index.md#cachepolicy)                        | yes              | Runner                 | The variable expansion is made by GitLab Runner's [internal variable expansion mechanism](#gitlab-runner-internal-variable-expansion-mechanism). |
-- 
GitLab