We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64882c6 commit 3cc1398Copy full SHA for 3cc1398
.github/workflows/release.yaml
@@ -30,6 +30,18 @@ jobs:
30
with:
31
version: v3.15.4
32
33
+ - name: Set up Kubectl
34
+ uses: azure/setup-kubectl@v1
35
+ with:
36
+ version: v4.0.0
37
+ id: install_kubectl
38
+
39
+ - name: Check if Kubernetes cluster is running
40
+ run: |
41
+ kubectl get all
42
+ continue-on-error: false
43
+ if: ${{ steps.install_kubectl.outcome == 'success' }} # Check if kubectl setup succeeded
44
45
- name: Add Dependencies
46
run: |
47
helm repo add stable https://charts.helm.sh/stable
0 commit comments