Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit de2bca1

Browse files
authored
Fix the logs upload step for integration tests
1 parent 62d597a commit de2bca1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/integration.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -229,19 +229,19 @@ jobs:
229229
GCS_BUCKET: dbt-ci
230230
run: tox -- --ddtrace
231231

232-
- uses: actions/upload-artifact@v4
233-
if: always()
234-
with:
235-
name: logs
236-
path: ./logs
237-
overwrite: true
238-
239232
- name: Get current date
240233
if: always()
241234
id: date
242235
run: |
243236
echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts
244237
238+
- uses: actions/upload-artifact@v4
239+
if: always()
240+
with:
241+
name: logs_${{ matrix.python-version }}_${{ matrix.os }}_${{ matrix.adapter }}-${{ steps.date.outputs.date }}
242+
path: ./logs
243+
overwrite: true
244+
245245
- uses: actions/upload-artifact@v4
246246
if: always()
247247
with:

0 commit comments

Comments
 (0)