File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -116,9 +116,8 @@ jobs:
116
116
117
117
deploy-prod :
118
118
if : github.ref == 'refs/heads/main' && github.event_name == 'push'
119
-
119
+ needs : [lint, typecheck, test]
120
120
runs-on : ubuntu-latest
121
-
122
121
environment : production
123
122
124
123
steps :
@@ -141,9 +140,8 @@ jobs:
141
140
142
141
deploy-stage :
143
142
if : (github.ref == 'refs/heads/main' && github.event_name == 'push') || (startsWith(github.ref, 'refs/tags/') && contains(github.ref, '-beta.'))
144
-
143
+ needs : [lint, typecheck, test]
145
144
runs-on : ubuntu-latest
146
-
147
145
environment : staging
148
146
149
147
steps :
@@ -166,9 +164,8 @@ jobs:
166
164
167
165
deploy-dev :
168
166
if : (github.ref == 'refs/heads/main' && github.event_name == 'push') || (github.event_name == 'pull_request' && github.base_ref == 'main')
169
-
167
+ needs : [lint, typecheck, test]
170
168
runs-on : ubuntu-latest
171
-
172
169
environment : development
173
170
174
171
steps :
You can’t perform that action at this time.
0 commit comments