diff options
Diffstat (limited to '.cisettings.xml')
-rw-r--r-- | .cisettings.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.cisettings.xml b/.cisettings.xml new file mode 100644 index 00000000..61f6265f --- /dev/null +++ b/.cisettings.xml @@ -0,0 +1,16 @@ +<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"> + <servers> + <server> + <id>gitlab</id> + <configuration> + <httpHeaders> + <property> + <name>Job-Token</name> + <value>${env.CI_JOB_TOKEN}</value> + </property> + </httpHeaders> + </configuration> + </server> + </servers> +</settings> |