File tree 2 files changed +7
-7
lines changed
src/MyWebApi/MyWebApi/Controllers
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 79
79
echo "$RAW_RESPONSE" > response.json
80
80
if : always()
81
81
82
- - name : Upload Response as Artifact
83
- uses : actions/upload-artifact@v4
84
- with :
85
- name : llM-response
86
- path : response.json
87
- if : always()
82
+ # - name: Upload Response as Artifact
83
+ # uses: actions/upload-artifact@v4
84
+ # with:
85
+ # name: llM-response
86
+ # path: response.json
87
+ # if: always()
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public InfoController(ILogger<InfoController> logger)
17
17
public IActionResult Get ( )
18
18
{
19
19
// Log a message at the Information level
20
- var message = "Hello World from InfoController!!! " ;
20
+ var message = "Hello World from InfoController. " ;
21
21
_logger . LogInformation ( message ) ;
22
22
return Ok ( message ) ;
23
23
}
You can’t perform that action at this time.
0 commit comments