From 4b533393680c29c3a9d463ab6f2cf4108ce5d237 Mon Sep 17 00:00:00 2001 From: Dariusz Majcherczyk Date: Thu, 7 Mar 2024 18:33:01 +0100 Subject: [PATCH] chore: add log --- .github/workflows/ci-cd-trigger.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd-trigger.yml b/.github/workflows/ci-cd-trigger.yml index 824aa102d..56463b19e 100644 --- a/.github/workflows/ci-cd-trigger.yml +++ b/.github/workflows/ci-cd-trigger.yml @@ -198,7 +198,8 @@ jobs: name: '(CI) cypress' uses: ./.github/workflows/cypress-run.yml secrets: inherit - if: needs.check-e2e-needed.outputs.run-tests == 'true' && contains(needs.build-sources.outputs.projects, 'governance') && contains(needs.build-sources.outputs.projects, 'explorer') + if: needs.check-e2e-needed.outputs.run-tests == 'true' && (contains(needs.build-sources.outputs.projects, 'governance') || contains(needs.build-sources.outputs.projects, 'explorer')) + with: projects: ${{ needs.build-sources.outputs.projects-e2e }} tags: '@smoke' @@ -286,7 +287,8 @@ jobs: runs-on: ubuntu-22.04 steps: - run: | - echo result="${{ needs.cypress.result }}" + result="${{ needs.cypress.result }}" + echo "Result: $result" if [[ $result == "success" || $result == "skipped" ]]; then exit 0 else