We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8809cf commit 4110ff3Copy full SHA for 4110ff3
.github/workflows/cleanup.yml
@@ -8,6 +8,10 @@ concurrency:
8
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
9
cancel-in-progress: true
10
11
+env:
12
+ GKE_CLUSTER: api-platform-demo
13
+ GCE_ZONE: europe-west1-c
14
+
15
jobs:
16
cleanup:
17
name: Uninstall K8s Release for Closed Pull Request
@@ -32,7 +36,7 @@ jobs:
32
36
run: |
33
37
gcloud components install gke-gcloud-auth-plugin
34
38
gcloud --quiet auth configure-docker
35
- gcloud container clusters get-credentials api-platform-demo --zone europe-west1-c
39
+ gcloud container clusters get-credentials ${{ env.GKE_CLUSTER }} --zone ${{ env.GCE_ZONE }}
40
-
41
name: Check for existing namespace
42
id: k8s-namespace
0 commit comments