From 52093576aa0a3a43c3617fe1118ce50c832e307d Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Fri, 18 Sep 2020 16:16:50 -0400 Subject: [PATCH] publish: fix missing task for creating new index The task was missed which was causing the post pipeline to fail, this patch should fix it by adding the missing task. Change-Id: I13955b1c9ac3899325f7397da6bf5379b3991241 --- playbooks/publish/post.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/publish/post.yaml b/playbooks/publish/post.yaml index 49816e6155..24e22b4114 100644 --- a/playbooks/publish/post.yaml +++ b/playbooks/publish/post.yaml @@ -24,6 +24,7 @@ - name: Create a new index when: _get_url.status_code == 404 + shell: helm repo index {{ zuul.project.src_dir }} - name: Merge into existing index when: _get_url.status_code == 200