Skip to content

Commit

Permalink
upgrade starship action to use starship cli 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Jun 24, 2024
1 parent 0380812 commit 9824da7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
cli-version:
description: "Version of @starship-ci/cli to use: default: 2.8.1"
required: false
default: "2.8.1"
default: "2.9.0"
kubeconfig:
description: "Kubeconfig file for remote cluster, if set, will be used instead of creating kind cluster"
required: false
Expand Down Expand Up @@ -126,9 +126,9 @@ runs:
run: |
starship setup \
--config ${{ inputs.config }} \
--helmName ${{ inputs.name }} \
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
--name ${{ inputs.name }} \
--namespace ${{ steps.set-namespace.outputs.namespace }} \
--chart ${{ inputs.chart }}
shell: bash

- name: Helm install
Expand All @@ -139,9 +139,9 @@ runs:
sleep 5
starship start \
--config ${{ inputs.config }} \
--helmName ${{ inputs.name }} \
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
--name ${{ inputs.name }} \
--namespace ${{ steps.set-namespace.outputs.namespace }} \
--chart ${{ inputs.chart }}
shell: bash

- name: Logs
Expand Down Expand Up @@ -169,9 +169,9 @@ runs:
kubectl get pods --namespace ${{ steps.set-namespace.outputs.namespace }}
starship start \
--config ${{ inputs.config }} \
--helmName ${{ inputs.name }} \
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
--name ${{ inputs.name }} \
--namespace ${{ steps.set-namespace.outputs.namespace }} \
--chart ${{ inputs.chart }}
shell: bash

- name: Helm install again, 3rd time is the charm
Expand All @@ -183,7 +183,7 @@ runs:
kubectl get pods --namespace ${{ steps.set-namespace.outputs.namespace }}
starship start \
--config ${{ inputs.config }} \
--helmName ${{ inputs.name }} \
--helmNamespace ${{ steps.set-namespace.outputs.namespace }} \
--helmChart ${{ inputs.chart }}
--name ${{ inputs.name }} \
--namespace ${{ steps.set-namespace.outputs.namespace }} \
--chart ${{ inputs.chart }}
shell: bash

0 comments on commit 9824da7

Please sign in to comment.