Fixing push command chain
This commit is contained in:
parent
41549f0851
commit
bba2e8b456
1 changed files with 4 additions and 1 deletions
|
@ -30,6 +30,7 @@ pages:
|
|||
- public
|
||||
only:
|
||||
- master@ananace/charts
|
||||
when: never
|
||||
|
||||
push:
|
||||
image:
|
||||
|
@ -44,8 +45,10 @@ push:
|
|||
- mkdir -p packaged
|
||||
- (cd packaged; helm package ../charts/*)
|
||||
- ls -d1 packaged/* | xargs -rn1 sh -c '
|
||||
curl --user gitlab-ci-token:$CI_JOB_TOKEN "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/stable/charts/$(basename $0)" -Iso /dev/null -w "%{http_code}" | grep 200 || \
|
||||
curl --user gitlab-ci-token:$CI_JOB_TOKEN "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/stable/charts/$(basename $0)" -Iso /dev/null -w "%{http_code}" | grep 200 ||
|
||||
curl --request POST --user gitlab-ci-token:$CI_JOB_TOKEN --form "chart=@$0" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/helm/api/${CHANNEL}/charts"
|
||||
'
|
||||
variables:
|
||||
CHANNEL: stable
|
||||
only:
|
||||
- master@ananace/charts
|
||||
|
|
Loading…
Reference in a new issue