Build Step - CI/CD用語集の定義
build step は、CI ジョブ内の 1 つの個別のコマンドまたは action です。
build step は、ジョブ内の 1 つの作業単位で、shell コマンド (run:) か再利用可能な action (uses:) のいずれかです。ジョブ内の step は順番に実行され、同じ runner と workspace を共有します。
step の失敗時の挙動
デフォルトでは、step からのゼロ以外の終了はジョブを失敗させ、以降の step をスキップします。実行を続けるには continue-on-error: true または if: always() を追加します (たとえばログを常にアップロードするため)。
関連ガイド
Step - CI/CD Glossary DefinitionStep: A **step** is a single task in a job - either a shell command (`run:`) or an action (`uses:`).
Build Stage - CI/CD Glossary DefinitionBuild Stage: A build stage is a logical phase in a pipeline (build, test, deploy) that groups jobs and usuall…
Build Log - CI/CD Glossary DefinitionBuild Log: A build log is the recorded stdout and stderr of every step in a job. It is the primary evidence f…