Skip to content
Snippets Groups Projects
Commit 8561633b authored by jurgenhaas's avatar jurgenhaas
Browse files

gitlab-ci-cd/drupal#28 Make it work in pipelines too

parent 6c79bca9
No related branches found
No related tags found
1 merge request!7Merging develop into main
......@@ -5,9 +5,7 @@ function gitlab() {
METHOD=$2
REQUEST=$3
shift 3
echo " sending request ..."
output="$(curl --write-out "\nHTTP-Code:%{http_code}" -X "$METHOD" -s -H "Private-Token: ${GITLAB_PRIVATE_TOKEN}" "${GITLAB_URL}"/api/v4/"$REQUEST" "$@")"
echo " done"
result="$(echo "$output" | grep "{")"
code="$(echo "$output" | grep -m 1 "HTTP-Code:" | cut -d: -f2)"
if [[ $code -eq $EXPECTED ]]; then
......@@ -52,6 +50,10 @@ elif [[ "$SOURCEBRANCH" == "develop" ]]; then
else
TARGETBRANCH=develop
fi
if [[ -n ${CI_SERVER_URL} ]]; then
GITLAB_URL=$CI_SERVER_URL
GITLAB_PRIVATE_TOKEN=$CI_JOB_TOKEN
fi
if [[ "x${GITLAB_URL}" == "x" ]]; then
echo "Missing GITLAB_URL environment variable, should be set to e.g. https://gitlab.lakedrops.com"
exit 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment