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 7e7f3cf commit 9e141d9Copy full SHA for 9e141d9
.github/workflows/deploy-to-control-plane-review-app.yml
@@ -112,8 +112,9 @@ 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 "NoBrace: $(cpflow exists -a ${{ env.APP_NAME }})"
+ echo "Brace: $([ cpflow exists -a ${{ env.APP_NAME }} ])"
117
+ if ! cpflow exists -a ${{ env.APP_NAME }}; then
118
echo "review app does not exist!"
119
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
120
echo "Canceling job as review app has not been previously deployed."; sleep inf
0 commit comments