From ada5dac189c9aeb7a4bc9b8ff78761d146ede81e Mon Sep 17 00:00:00 2001 From: pcheremu Date: Fri, 15 Dec 2023 17:02:10 +0300 Subject: [PATCH] test: fix uploading --- .github/workflows/app-e2e.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/app-e2e.yml b/.github/workflows/app-e2e.yml index 1221890934..4a74d0479b 100644 --- a/.github/workflows/app-e2e.yml +++ b/.github/workflows/app-e2e.yml @@ -116,8 +116,15 @@ jobs: E2ENETWORK='${{ inputs.default_network_value_for_e2e }}' npx cucumber-js --tags "${{ matrix.tags }} ${{ inputs.environmentTags }} and not @testnet" fi - - name: Upload tests to the Allure proj - if: always() && inputs.publish_to_allure == true + - if: always() + name: Upload artifacts to Git + uses: actions/upload-artifact@v3 + with: + name: allure-results + path: packages/app/allure-results + + - name: Upload tests to Allure + if: always() env: ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} run: |