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 196f95a commit 8202fc1Copy full SHA for 8202fc1
.github/workflows/pr-deploy.yaml
@@ -75,18 +75,18 @@ jobs:
75
NEW: ${{ steps.check_deployment.outputs.NEW }}
76
BUILD: |
77
${{
78
- github.event.inputs.build == 'true' ||
+ github.event.inputs.build ||
79
(
80
github.event_name == 'workflow_dispatch' &&
81
82
- steps.check_deployment.outputs.NEW == 'true' ||
+ steps.check_deployment.outputs.NEW ||
83
steps.filter.outputs.all_count > steps.filter.outputs.ignored_count
84
)
85
) ||
86
87
steps.filter.outputs.all_count > steps.filter.outputs.ignored_count &&
88
github.event_name == 'push' &&
89
- steps.check_deployment.outputs.NEW == 'false'
+ !steps.check_deployment.outputs.NEW
90
91
}}
92
0 commit comments