Skip to content

Commit

Permalink
chore(ci): fix nightly workflow (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 authored Jan 11, 2025
1 parent 8baf28b commit 9f40eb9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/e2e-test-workflow-call-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,14 +164,14 @@ jobs:
- name: Write failed test
if: failure()
run:
echo "${{ matrix.test }}" >> failed-tests.log
echo "${{ matrix.test }}" >> failed-tests-${{ matrix.test }}.log

- name: Upload Failed Tests
if: failure()
uses: actions/upload-artifact@v4
with:
name: failed-tests-${{ matrix.test }}.log
path: failed-tests.log
name: failed-tests-${{ matrix.test }}
path: failed-tests-${{ matrix.test }}.log
if-no-files-found: ignore

notify-slack:
Expand All @@ -185,6 +185,7 @@ jobs:
uses: actions/download-artifact@v4
with:
pattern: failed-tests-*
merge-multiple: true

- name: Combine Failed Test Logs
run: |
Expand Down

0 comments on commit 9f40eb9

Please sign in to comment.