Skip to content

Commit 8202fc1

Browse files
committed
testing
1 parent 196f95a commit 8202fc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pr-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@ jobs:
7575
NEW: ${{ steps.check_deployment.outputs.NEW }}
7676
BUILD: |
7777
${{
78-
github.event.inputs.build == 'true' ||
78+
github.event.inputs.build ||
7979
(
8080
github.event_name == 'workflow_dispatch' &&
8181
(
82-
steps.check_deployment.outputs.NEW == 'true' ||
82+
steps.check_deployment.outputs.NEW ||
8383
steps.filter.outputs.all_count > steps.filter.outputs.ignored_count
8484
)
8585
) ||
8686
(
8787
steps.filter.outputs.all_count > steps.filter.outputs.ignored_count &&
8888
github.event_name == 'push' &&
89-
steps.check_deployment.outputs.NEW == 'false'
89+
!steps.check_deployment.outputs.NEW
9090
)
9191
}}
9292

0 commit comments

Comments
 (0)