File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -189,14 +189,14 @@ runs:
189
189
echo ${{ steps.apply.outputs.public_url }} >> $GITHUB_STEP_SUMMARY
190
190
191
191
- name : Print result
192
- if : ${{ success() inputs.tf_action == 'destroy' && inputs.tf_state_bucket_destroy == 'true' }}
192
+ if : ${{ success() && inputs.tf_action == 'destroy' && inputs.tf_state_bucket_destroy == 'true' }}
193
193
shell : bash
194
194
run : |
195
195
echo "## Deploy Destroyed! :boom:" >> $GITHUB_STEP_SUMMARY
196
196
echo "Infrastructure should be gone now!" >> $GITHUB_STEP_SUMMARY
197
197
198
- - name : Print result
199
- if : ${{ success() inputs.tf_action == 'destroy' && inputs.tf_state_bucket_destroy != 'true' }}
198
+ - name : Print result
199
+ if : ${{ success() && inputs.tf_action == 'destroy' && inputs.tf_state_bucket_destroy != 'true' }}
200
200
shell : bash
201
201
run : |
202
202
echo "## Deploy Destroyed! :boom:" >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments