File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,17 @@ jobs:
28
28
develocity-access-key : ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
29
29
skip-comment : true
30
30
skip-summary : true
31
+ - name : Output JSON file
32
+ run : |
33
+ if [ -f "${{ steps.publish.outputs.build-metadata-file-path }}" ]; then
34
+ echo "```json" >> $GITHUB_STEP_SUMMARY
35
+ jq '.' ${{ steps.publish.outputs.build-metadata-file-path }} >> $GITHUB_STEP_SUMMARY
36
+ echo "\n```" >> $GITHUB_STEP_SUMMARY;
37
+ fi
31
38
- name : Inject build scans in reports
32
39
uses : quarkusio/action-helpers@main
33
40
with :
34
41
github-token : ${{ secrets.GITHUB_TOKEN }}
35
42
action : inject-build-scans
36
43
workflow-run-id : ${{ github.event.workflow_run.id }}
37
44
build-metadata-file-path : ${{ steps.publish.outputs.build-metadata-file-path }}
38
- - name : Output JSON file
39
- run : |
40
- if [ -f "${{ steps.publish.outputs.build-metadata-file-path }}" ]; then jq '.' ${{ steps.publish.outputs.build-metadata-file-path }} >> $GITHUB_STEP_SUMMARY; fi
41
-
You can’t perform that action at this time.
0 commit comments