diff --git a/appspec.yml b/appspec.yml index 06325781..8c2d0d96 100644 --- a/appspec.yml +++ b/appspec.yml @@ -3,7 +3,7 @@ os: linux files: - source: / - destination: /home/ec2-user/ + destination: /home/ec2-user/GAuth-BackEnd overwrite: yes permissions: diff --git a/deploy.sh b/deploy.sh index 194849ea..d93d0621 100644 --- a/deploy.sh +++ b/deploy.sh @@ -4,12 +4,6 @@ JAR_PATH=$REPOSITORY/$PROJECT_NAME/build/libs/gauth-0.0.1-SNAPSHOT.jar cd $REPOSITORY/$PROJECT_NAME/ -echo "> Git Pull" -git pull origin main - -echo "> Project Build" -./gradlew clean build - CURRENT_PID=$(lsof -ti tcp:8080) if [ -z "$CURRENT_PID" ]; then echo "> 현재 구동중인 애플리케이션이 없으므로 종료하지 않습니다."