Skip to content

Commit

Permalink
add another retry in action, since now we check for failure cases mor…
Browse files Browse the repository at this point in the history
…e early
  • Loading branch information
Anmol1696 committed Jun 18, 2024
1 parent 8c8188b commit cbeccb4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,18 @@ runs:
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
shell: bash

- name: Helm install again, 3rd time is the charm
id: helm-install-3
if: steps.helm-install-2.outcome == 'failure'
run: |
helm delete ${{ inputs.name }} --debug --namespace ${{ steps.set-namespace.outputs.namespace }} --wait || true
sleep 5
kubectl get pods --namespace ${{ steps.set-namespace.outputs.namespace }}
starship start \
--helmName ${{ inputs.name }} \
--helmVersion ${{ inputs.version }} \
--helmFile ${{ inputs.config }} \
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
shell: bash

0 comments on commit cbeccb4

Please sign in to comment.