Standard Output (stdout) - CI/CD Glossary Definition
Standard output (stdout, file descriptor 1) is the default stream a process writes normal output to. It is buffered and can be redirected to a file or piped to another command.
In CI
GitHub Actions captures stdout (and stderr) into the step log. Writing to the special file in $GITHUB_OUTPUT (not stdout) is how steps pass values to later steps.
Related guides
Standard Error (stderr) - CI/CD Glossary DefinitionStandard Error (stderr): Standard error (stderr, file descriptor 2) is the separate stream a process writes d…
Standard Input (stdin) - CI/CD Glossary DefinitionStandard Input (stdin): Standard input (stdin, file descriptor 0) is the default stream a process reads input…
Redirection - CI/CD Glossary DefinitionRedirection: Redirection sends a process stream to or from a file or another descriptor using operators like…