mirror of https://gitlab.com/basile.b/dexed.git
9 lines
310 B
Bash
9 lines
310 B
Bash
if [ -z "$PUB_DEXED_RLZ" ]; then
|
|
echo "no access token available to delete artifacts of job" $1
|
|
exit 1
|
|
fi
|
|
|
|
curl -g --header "PRIVATE-TOKEN: $PUB_DEXED_RLZ" \
|
|
--header 'Content-Type: application/json' \
|
|
--request DELETE "https://gitlab.com/api/v4/projects/15908229/jobs/"$1"/artifacts"
|