From ce3136f71a554312b230f14e6f755ae915ae3ccc Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Wed, 11 Mar 2026 12:09:28 -0700 Subject: [PATCH] fix: warning for conditional --- .github/workflows/template.flink-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/template.flink-ci.yml b/.github/workflows/template.flink-ci.yml index ad8ebf067a8e9..542a6cf069a6b 100644 --- a/.github/workflows/template.flink-ci.yml +++ b/.github/workflows/template.flink-ci.yml @@ -276,7 +276,7 @@ jobs: - name: "Upload build artifacts" uses: actions/upload-artifact@v4 - if: ${{ failure() && steps.test-run.outputs.debug-files-output-dir }} != '' + if: ${{ failure() && steps.test-run.outputs.debug-files-output-dir != '' }} with: name: logs-test-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}-${{ matrix.stringified-module-name }}-${{ steps.test-run.outputs.debug-files-name }} path: ${{ steps.test-run.outputs.debug-files-output-dir }}