From 873eb9cd3e436ac7ae642ac06c904db50f16e890 Mon Sep 17 00:00:00 2001 From: Julian Brost Date: Tue, 17 May 2022 15:36:12 +0200 Subject: [PATCH] Integration tests: use separate artifact names for MySQL/PostgreSQL If I remember correctly, some time ago you were able to download artifacts from the job page, i.e. there was no issues with two jobs using the same artifact name within one workflow. Now it looks like you can only download the artifacts from the workflow page, so this commit allows you to download both files from there. --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 6615e0a8..dff8112c 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -50,6 +50,6 @@ jobs: if: ${{ always() }} uses: actions/upload-artifact@v2 with: - name: debug.log.xz + name: ${{ matrix.database.name }}-debug.log.xz path: debug.log.xz retention-days: 1