Skip to content

Commit

Permalink
feature: add another retry in action, since now we check for failure …
Browse files Browse the repository at this point in the history
…cases more early (#32)
  • Loading branch information
Anmol1696 authored Jun 18, 2024
1 parent 8c8188b commit b83612d
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 b83612d

Please sign in to comment.