79482522

Date: 2025-03-04 02:14:40
Score: 2
Natty:
Report link

Now I want to know that after the pipeline is successfully run where is the output displayed?

The output can be seen in the pipeline log whether it's a command line script or another language (such as python). For example,

steps:
- script: |
    echo 'Hello from CICD'
  displayName: 'Print in script'

- task: PythonScript@0
  displayName: 'Print in python'
  inputs:
    scriptSource: 'filePath'
    scriptPath: 'print.py'

print.py:

print("Hello from CICD")

Result:

enter image description here

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Ziyang Liu-MSFT