From 72fee6abb494870815bde746cc3a2c2a4e115c54 Mon Sep 17 00:00:00 2001 From: Niklas Berglund Date: Fri, 13 Dec 2024 14:37:48 +0100 Subject: [PATCH] Multiline condition --- .github/workflows/android-app.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index a286c5fb8818..73ed3c0be424 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -561,7 +561,9 @@ jobs: run: ./android/scripts/run-instrumented-tests-repeat.sh ${{ matrix.test-repeat }} - name: Pull test report - if: always() && matrix.test-repeat != 0 && github.event.inputs.e2e_tests_infra_flavor == 'stagemole' + if: > + always() && matrix.test-repeat != 0 && + github.event.inputs.e2e_tests_infra_flavor == 'stagemole' shell: bash -ieo pipefail {0} env: REPORT_DIR: ${{ steps.prepare-report-dir.outputs.report_dir }} @@ -569,7 +571,9 @@ jobs: - name: Upload e2e instrumentation report uses: actions/upload-artifact@v4 - if: always() && matrix.test-repeat != 0 && github.event.inputs.e2e_tests_infra_flavor == 'stagemole' + if: > + always() && matrix.test-repeat != 0 && + github.event.inputs.e2e_tests_infra_flavor == 'stagemole' with: name: e2e-instrumentation-report path: ${{ steps.prepare-report-dir.outputs.report_dir }}