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 aed3e08 commit 44e1a2aCopy full SHA for 44e1a2a
.github/workflows/build-deploy-docker.yaml
@@ -210,7 +210,10 @@ jobs:
210
if: ${{ contains(github.ref, 'main') && github.event.pull_request.title != 'Feedback' }}
211
id: detect-gke
212
run: |-
213
- is_up="$(gcloud container clusters list | grep cs3219-g16)"
+ clusters="$(gcloud container clusters list)"
214
+ echo "Clusters:\n $clusters"
215
+ is_up="$(echo $clusters | grep cs3219-g16)"
216
+ echo "Is Cluster Up? $is_up"
217
if [[ -z "$is_up" ]]; then
218
echo "output=false" >> $GITHUB_OUTPUT
219
else
0 commit comments