From de2bca1c9030754f8fd981ae736206f05046f6f7 Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Tue, 27 Aug 2024 19:47:56 -0400 Subject: [PATCH] Fix the logs upload step for integration tests --- .github/workflows/integration.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ae75a4f2a..0ee564bee 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -229,19 +229,19 @@ jobs: GCS_BUCKET: dbt-ci run: tox -- --ddtrace - - uses: actions/upload-artifact@v4 - if: always() - with: - name: logs - path: ./logs - overwrite: true - - name: Get current date if: always() id: date run: | echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts + - uses: actions/upload-artifact@v4 + if: always() + with: + name: logs_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }} + path: ./logs + overwrite: true + - uses: actions/upload-artifact@v4 if: always() with: