File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121
121
122
122
deploy-fly-staging-monolith :
123
123
runs-on : ubuntu-latest
124
- name : Deploy on fly.io
124
+ name : Deploy Monolith on fly.io (staging)
125
125
if : github.event_name == 'push' && github.ref == 'refs/heads/master'
126
126
needs : [test, lint]
127
127
steps :
@@ -132,9 +132,9 @@ jobs:
132
132
FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
133
133
deploy-fly-staging-balancer :
134
134
runs-on : ubuntu-latest
135
- name : Deploy on fly.io
135
+ name : Deploy Balancer on fly.io (staging)
136
136
if : github.event_name == 'push' && github.ref == 'refs/heads/master'
137
- needs : [test, lint]
137
+ needs : [test, lint, deploy-fly-staging-monolith ]
138
138
steps :
139
139
- uses : actions/checkout@v3
140
140
- uses : superfly/flyctl-actions/setup-flyctl@master
@@ -144,7 +144,7 @@ jobs:
144
144
145
145
deploy-fly-prod :
146
146
runs-on : ubuntu-latest
147
- name : Deploy on fly.io
147
+ name : Deploy Monolith on fly.io (prod)
148
148
if : github.event_name == 'push' && github.ref == 'refs/heads/master'
149
149
needs : [test, lint]
150
150
steps :
You can’t perform that action at this time.
0 commit comments