Skip to content

Commit

Permalink
.github/workflows: Fix typo invoking action-junit-report (bad indenta…
Browse files Browse the repository at this point in the history
…tion).
  • Loading branch information
ivucica authored Sep 18, 2024
1 parent 1fe1487 commit 261df2f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ jobs:
# to run as triggered by these workflows in another job, which might then
# work on pull requests as well. This needs further investigation.
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow
report_paths: 'bazel-testlogs/**/test.xml'
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow
report_paths: 'bazel-testlogs/**/test.xml'
continue-on-error: true
bazel_build_buildbuddy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 261df2f

Please sign in to comment.