File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111jobs :
1212
1313 # deploy this first since the worker and the api will depend on kafka topics being current
14- stage_1 :
14+ deploy_stage_1 :
1515 strategy :
1616 fail-fast : false
1717 matrix :
2525 secrets : inherit
2626
2727 # the api should be next as well as the worker now that the kafka topics are initialized
28- stage_2 :
29- needs : stage_1
28+ deploy_stage_2 :
29+ needs : deploy_stage_1
3030 strategy :
3131 fail-fast : false
3232 matrix :
Original file line number Diff line number Diff line change 1313
1414jobs :
1515 is_changed :
16+ name : ${{ inputs.service_name}}_is_changed
1617 runs-on : ubuntu-latest # windows-latest | macos-latest
1718 steps :
1819 - name : Checkout repository
3334
3435 outputs :
3536 changed : ${{ steps.get_changes.outputs.any_changed }}
36- run :
37+ deploy :
38+ name : ${{ inputs.service_name}}_deploy
3739 needs : is_changed
3840 if : needs.is_changed.outputs.changed == 'true'
3941 environment : ${{ inputs.deploy_environment }}
You can’t perform that action at this time.
0 commit comments