Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jun 22, 2024
1 parent 6abda3d commit 59d8825
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,14 @@ jobs:
e2e/interchaintest/go.sum
- name: TestContract
run: just e2e-test ${{ matrix.test }}
- name: Set Artifact Name for Diagnostics
if: failure()
run: echo "ARTIFACT_NAME=${{ matrix.test//\//- }}" >> $GITHUB_ENV
- name: Upload Diagnostics on Failure
uses: actions/upload-artifact@v4
if: ${{ failure() }}
if: failure()
continue-on-error: true
with:
name: '${{ matrix.test.replace("/", "-") }}'
name: '${{ env.ARTIFACT_NAME }}'
path: e2e/interchaintestv8/diagnostics
retention-days: 5

0 comments on commit 59d8825

Please sign in to comment.