Skip to content

Commit 94dfad1

Browse files
author
Martin Schaef
committed
fixing
1 parent 5912a0f commit 94dfad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/self-test-and-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
name: recommendations_python_${{ matrix.os }}
5353
path: code-guru/
5454

55-
- name: Print Summary of Findings ${{ matrix.os }}
55+
- name: Print Summary of Findings on ${{ matrix.os }}
5656
if: steps.iam-role.outcome == 'success' && matrix.os != 'windows-latest' # cat and jq don't work the same way on windows
5757
run: |
5858
echo "detector,filePath,lineNumber" > summary-of-results.csv
@@ -129,8 +129,8 @@ jobs:
129129
name: recommendations_java_${{ matrix.os }}
130130
path: code-guru/
131131

132-
- name: Print Summary of Findings ${{ matrix.os }}
133-
if: steps.iam-role.outcome == 'success'
132+
- name: Print Summary of Findings on ${{ matrix.os }}
133+
if: steps.iam-role.outcome == 'success' && matrix.os != 'windows-latest' # cat and jq don't work the same way on windows
134134
run: |
135135
echo "detector,filePath,lineNumber" > summary-of-results.csv
136136
jq -r '.runs[0].results[] | {ruleId: .ruleId, firstFile: .locations[0].physicalLocation.artifactLocation.uri, firstLine: .locations[0].physicalLocation.region.startLine} | join(",")' \

0 commit comments

Comments
 (0)