Skip to content

Commit 590be80

Browse files
committed
fix: deploy script missing backend
1 parent e84c46f commit 590be80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy_to_prod.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: '1.24'
28+
go-version: "1.24"
2929

3030
# -------------------------
3131
# Build frontend and backend
@@ -86,6 +86,7 @@ jobs:
8686
run: |
8787
rsync -avz --delete --force --exclude 'server/node_modules' -e "ssh -i deploy_key" frontend/.output ${SSH_USER}@${SSH_HOST}:${REMOTE_PATH}/frontend
8888
rsync -avz --delete --force -e "ssh -i deploy_key" ecosystem.config.js ${SSH_USER}@${SSH_HOST}:${REMOTE_PATH}
89+
rsync -avz --delete --force -e "ssh -i deploy_key" backend/backend_app
8990
rsync -avz --delete --force -e "ssh -i deploy_key" .env.production ${SSH_USER}@${SSH_HOST}:${REMOTE_PATH}/.env.production
9091
- name: Install frontend dependencies on server
9192
run: |

0 commit comments

Comments
 (0)