mirror of https://gitlab.com/basile.b/dexed.git
fix #22 - increasing repository storage due to CI
This commit is contained in:
parent
f98d1ae41a
commit
97f569b5b4
|
@ -6,6 +6,9 @@ pages:
|
||||||
- cd docs
|
- cd docs
|
||||||
- bash generate.sh
|
- bash generate.sh
|
||||||
artifacts:
|
artifacts:
|
||||||
|
# prevent storage increase
|
||||||
|
# in period of inactivity a weekly CRON regenerate the site
|
||||||
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
only:
|
only:
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
if [ -z "$PUB_DEXED_RLZ" ]; then
|
||||||
|
echo "no access token available to delete artifacts of job" $1
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
export PUB_DEXED_RLZ="H_AUTBZCrxUsh-XYTSXz"
|
||||||
|
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"
|
Loading…
Reference in New Issue