Skip to content

Commit d31c6e2

Browse files
authored
[FIX] script 폴더명 오타 수정 (#498)
2 parents 89b77cc + 6ac8126 commit d31c6e2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/app-cd-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ jobs:
9090
key: ${{ secrets.DEV_PEM_KEY }}
9191
script: |
9292
cd ~
93-
sudo chmod +x ./app/scripts/*.sh
94-
./app/scripts/deploy.sh
93+
sudo chmod +x ./app/script/*.sh
94+
./app/script/deploy.sh
9595
docker image prune -f

script/deploy.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
cd /home/ec2-user/app
33

4-
source /home/ec2-user/app/scripts/health_check.sh
5-
source /home/ec2-user/app/scripts/deploy_container.sh
6-
source /home/ec2-user/app/scripts/nginx_reload.sh
7-
source /home/ec2-user/app/scripts/stop_container.sh
4+
source /home/ec2-user/app/script/health_check.sh
5+
source /home/ec2-user/app/script/deploy_container.sh
6+
source /home/ec2-user/app/script/nginx_reload.sh
7+
source /home/ec2-user/app/script/stop_container.sh
88

99
BLUE_CONTAINER_NAME="app-blue"
1010
BLUE_PORT=9090

0 commit comments

Comments
 (0)