From b98419ee56891ce99f6da808ea2aaece298e8b5a Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Wed, 26 Jul 2023 15:19:18 +0100 Subject: [PATCH] Fix allure report overwriting for different Postgres versions (#4806) ## Problem We've got an example of Allure reports from 2 different runners for the same build that started to upload at the exact second, making one overwrite another ## Summary of changes - Use the Postgres version to distinguish artifacts (along with the build type) --- .github/actions/run-python-test-set/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-python-test-set/action.yml b/.github/actions/run-python-test-set/action.yml index ceb6f4aa90..60ccc56738 100644 --- a/.github/actions/run-python-test-set/action.yml +++ b/.github/actions/run-python-test-set/action.yml @@ -209,4 +209,4 @@ runs: uses: ./.github/actions/allure-report-store with: report-dir: /tmp/test_output/allure/results - unique-key: ${{ inputs.build_type }} + unique-key: ${{ inputs.build_type }}-${{ inputs.pg_version }}