Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 411 Bytes

echo.md

File metadata and controls

18 lines (12 loc) · 411 Bytes

echo Command

echo script simply prints a message to standard output. Set message in --message param.

ci echo --message "Hello world!"

Using --eval parameters get wrapped in template string literals and evaluated. You can use that to pring useful data.

ci echo --message "Version: \${PROJECT_VERSION}" --eval
ci echo --message "\${JSON.stringify(ci, null, 4)}" --eval