Skip to content

Commit e25472e

Browse files
style: update style
1 parent 84ce989 commit e25472e

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/github-actions-backend.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,8 @@ jobs:
135135
port: ${{ secrets.PORT }}
136136
key: ${{ secrets.SSH_KEY }}
137137
script: |
138-
export NVM_DIR=~/.nvm
139-
source ~/.nvm/nvm.sh
140138
cd /srv/beg-monorepo/apps/backend
141-
pm2 reload ecosystem.config.js
139+
/home/${{ secrets.USERNAME }}/.local/share/pnpm/pm2 reload ecosystem.config.js
142140
143141
# テスト成功時はこちらのステップが実行される
144142
- name: Slack Notification on Success at Deployment Stage

.github/workflows/github-actions-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
key: ${{ secrets.SSH_KEY }}
134134
script: |
135135
cd /srv/beg-monorepo/apps/frontend
136-
pm2 reload ecosystem.config.js
136+
/home/${{ secrets.USERNAME }}/.local/share/pnpm/pm2 reload ecosystem.config.js
137137
138138
# テスト成功時はこちらのステップが実行される
139139
- name: Slack Notification on Success at Deployment Stage

.github/workflows/github-actions-uploader.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
key: ${{ secrets.SSH_KEY }}
136136
script: |
137137
cd /srv/beg-monorepo/apps/uploader
138-
pm2 reload ecosystem.config.js
138+
/home/${{ secrets.USERNAME }}/.local/share/pnpm/pm2 reload ecosystem.config.js
139139
140140
# テスト成功時はこちらのステップが実行される
141141
- name: Slack Notification on Success at Deployment Stage

apps/backend/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const bootstrap = async () => {
1010
app.setGlobalPrefix('beg')
1111
configMiddlewares(app)
1212
configLogger(app)
13-
1413
await app.listen(3002)
1514
}
1615

0 commit comments

Comments
 (0)