Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.

Commit 471c479

Browse files
committed
updated
1 parent a52af62 commit 471c479

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
env:
1313
AWS_REGION: ap-northeast-2
14-
S3_BUCKET: 0717-dist
14+
S3_BUCKET: 0717-bucket
1515
S3_KEY: release/dist.zip
16-
CODEDEPLOY_APP: 0717CodeDeploy
17-
CODEDEPLOY_GROUP: 0717dg
16+
CODEDEPLOY_APP: 0717-cd-app
17+
CODEDEPLOY_GROUP: 0717-cd-dg
1818

1919
steps:
2020
- name: Checkout source

appspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 0.0
22
os: linux
33
files:
44
- source: /
5-
destination: /home/ubuntu/myapp
5+
destination: /home/ubuntu/app
66
hooks:
77
AfterInstall:
88
- location: scripts/install.sh

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
cd /home/ubuntu/myapp
1+
cd /home/ubuntu/app
22
npm install

scripts/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cd /home/ubuntu/myapp
1+
cd /home/ubuntu/app
22

33
pkill -f "node index.js"
44
nohup npm start > app.log 2>&1 &

0 commit comments

Comments
 (0)