blob: 6bd8389b6126af870c1fcafbc05577d502dc5fb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
function run {
echo "running pipeline for $1"
curl --request POST --form "token=$BUILD_TRIGGER" --form ref=$1 https://gitlab.com/api/v4/projects/180398/trigger/pipeline || exit 1
}
run "ci_deheader"
|