Skip to content

Commit ed9570d

Browse files
committed
wip
1 parent 1963906 commit ed9570d

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/jimmy_cicd_deploy_stages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
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:
@@ -25,8 +25,8 @@ jobs:
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:

.github/workflows/jimmy_cicd_deploy_workflow_call.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313

1414
jobs:
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
@@ -33,7 +34,8 @@ jobs:
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 }}

0 commit comments

Comments
 (0)