Skip to content

Commit

Permalink
Fixing the Github CI yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
krmahadevan committed Jun 5, 2023
1 parent 85c8dbb commit 31db07e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ jobs:
testng.test.extra.jvmargs=${{ matrix.testExtraJvmArgs }}
- name: 'Generate unique build id'
id: build_id
if: ${{ steps.run_test_cases.outcome == 'failure' }}
if: steps.run_test_cases.outcome == 'failure'
run: echo "id=$(date +%s)" >> $GITHUB_OUTPUT
- name: Upload build reports
if: ${{ steps.run_test_cases.outcome == 'failure' }}
if: steps.run_test_cases.outcome == 'failure'
uses: actions/upload-artifact@v3
with:
name: build-reports-${{ matrix.jdk.group }}-${{ matrix.jdk.version }}-${{ steps.build_id.outputs.id }}
Expand Down

0 comments on commit 31db07e

Please sign in to comment.