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: