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 78b497d commit 7e7f3cfCopy full SHA for 7e7f3cf
.github/workflows/deploy-to-control-plane-review-app.yml
@@ -112,8 +112,8 @@ jobs:
112
113
# Check if app exists and save state
114
echo "apple"
115
- echo "$(cpflow exists -a ${{ env.APP_NAME }})"
116
- if [[ cpflow exists -a ${{ env.APP_NAME }} ]]; then
+ echo [ cpflow exists -a ${{ env.APP_NAME }} ]
+ if [ cpflow exists -a ${{ env.APP_NAME }} ]; then
117
echo "review app does not exist!"
118
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
119
echo "Canceling job as review app has not been previously deployed."; sleep inf
0 commit comments