File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,10 @@ jobs:
139
139
needs : [e2e-tests]
140
140
steps :
141
141
- uses : actions/checkout@v4
142
+ - name : Update OpenAPI configuration
143
+ run : |
144
+ DEPLOY_HOST=${{ secrets.DEPLOY_HOST }}
145
+ sed -i "s/SOMEIP/${DEPLOY_HOST}/g" gatewayservice/openapi.yaml
142
146
- name : Publish to Registry
143
147
uses : elgohr/Publish-Docker-Github-Action@v5
144
148
with :
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ async function startServer() {
12
12
const mongoUri = mongoserver . getUri ( ) ;
13
13
process . env . MONGODB_URI = mongoUri ;
14
14
userservice = await require ( "../../users/userservice/user-service" ) ;
15
+ statsservice = await require ( "../../stats/stats-service" ) ;
15
16
authservice = await require ( "../../users/authservice/auth-service" ) ;
16
17
gatewayservice = await require ( "../../gatewayservice/gateway-service" ) ;
17
18
}
You can’t perform that action at this time.
0 commit comments