GitLab CI - build 擋住 deploy

如果不希望前面的 stage 失敗時,後面的 job 繼續執行,就要使用以下設定

build:
when: manual
allow_failure: false

deploy:
when: on_success

Reference