mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
7 lines
212 B
Bash
Executable file
7 lines
212 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "# Setting pipeline ci credentials"
|
|
|
|
echo "https://gitlab-ci-token:${CI_JOB_TOKEN}@${CI_SERVER_HOST}" > ~/.git-credential
|
|
git config --global credential.helper "store --file ~/.git-credential"
|
|
|