Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deployment): Runtime error in CICD PR Checks due to data type inc…
…ompatibility (#30164) (#30165) ### Proposed Changes * This PR fixes a runtime error in the CICD PR verification phase caused by an incorrect logical expression. The expression `${{ needs.initialize.outputs.build }}` has been updated to `${{ needs.initialize.outputs.build == 'true' }}` to ensure correct type handling. This change explicitly compares the value to 'true', resolving potential failures when dealing with boolean, empty, or null values. ### Additional Info This PR resolves #30164 (Runtime error in CICD PR Checks due to incompatible data type).
- Loading branch information