File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ jobs:
126
126
source : ' .env,dist/*'
127
127
target : ' /srv/beg-monorepo/apps/backend'
128
128
overwrite : true
129
-
130
129
- name : SSH to Server and Run Command
131
130
uses : appleboy/ssh-action@v1
132
131
with :
@@ -135,7 +134,8 @@ jobs:
135
134
port : ${{ secrets.PORT }}
136
135
key : ${{ secrets.SSH_KEY }}
137
136
script : |
138
- bash -l -c "cd /srv/beg-monorepo/apps/frontend && /home/${{ secrets.USERNAME }}/.local/share/pnpm/pm2 reload ecosystem.config.js"
137
+ cd /srv/beg-monorepo/apps/backend
138
+ pm2 reload ecosystem.config.js
139
139
140
140
# テスト成功時はこちらのステップが実行される
141
141
- name : Slack Notification on Success at Deployment Stage
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const bootstrap = async () => {
10
10
app . setGlobalPrefix ( 'beg' )
11
11
configMiddlewares ( app )
12
12
configLogger ( app )
13
+
13
14
await app . listen ( 3002 )
14
15
}
15
16
You can’t perform that action at this time.
0 commit comments