From 0a800111f30821a8bf2e1d384e07fd6e7eaf5d5a Mon Sep 17 00:00:00 2001 From: Olga Bulat Date: Tue, 21 Mar 2023 16:29:26 +0300 Subject: [PATCH] Try to get logs in CI --- .github/workflows/ci_cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 841dc8604e7..4b5660c046e 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -327,13 +327,13 @@ jobs: run: just api/test - name: Print API test logs - if: success() || failure() + if: success() || failure() || cancelled() run: | just logs > api_logs cat api_logs - name: Upload API test logs - if: success() || failure() + if: success() || failure() || cancelled() uses: actions/upload-artifact@v3 with: name: api_logs