-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Deploy to EC2 | ||
|
||
on: | ||
push: | ||
branches: | ||
- code-deploy | ||
|
||
env: | ||
AWS_REGION: ap-northeast-2 | ||
AWS_S3_BUCKET: spring-boot-code | ||
AWS_CODE_DEPLOY_APPLICATION: spring-boot-deploy | ||
AWS_CODE_DEPLOY_GROUP: spring-boot-CD-group | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: JDK 17 설치 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
|
||
- name: gradlew에 실행 권한 부여 | ||
run: chmod +x ./gradlew | ||
|
||
- name: 프로젝트 빌드 | ||
run: ./gradlew clean build -x test | ||
|
||
- name: AWS credential 설정 | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-region: ${{ env.AWS_REGION }} | ||
aws-access-key-id: ${{ secrets.CICD_ACCESS_KEY }} | ||
aws-secret-access-key: ${{ secrets.CICD_SECRET_KEY }} | ||
|
||
- name: S3에 업로드 | ||
run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://$AWS_S3_BUCKET/cicdtest/$GITHUB_SHA.zip --source . | ||
- name: EC2에 배포 | ||
run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=cicdtest/$GITHUB_SHA.zip,bundleType=zip |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: 0.0 | ||
os: linux | ||
|
||
files: | ||
- source: / | ||
destination: /home/ubuntu/spring-github-action | ||
overwrite: yes | ||
|
||
permissions: | ||
- object: / | ||
owner: ubuntu | ||
group: ubuntu | ||
|
||
hooks: | ||
AfterInstall: | ||
- location: scripts/stop.sh | ||
timeout: 60 | ||
ApplicationStart: | ||
- location: scripts/start.sh | ||
timeout: 60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
ROOT_PATH="/home/ubuntu/spring-boot" | ||
JAR="$ROOT_PATH/application.jar" | ||
|
||
APP_LOG="$ROOT_PATH/application.log" | ||
ERROR_LOG="$ROOT_PATH/error.log" | ||
START_LOG="$ROOT_PATH/start.log" | ||
|
||
NOW=$(date +%c) | ||
|
||
echo "[$NOW] $JAR 복사" >> $START_LOG | ||
cp $ROOT_PATH/build/libs/spring-github-action-1.0.0.jar $JAR | ||
|
||
echo "[$NOW] > $JAR 실행" >> $START_LOG | ||
nohup java -jar $JAR > $APP_LOG 2> $ERROR_LOG & | ||
|
||
SERVICE_PID=$(pgrep -f $JAR) | ||
echo "[$NOW] > 서비스 PID: $SERVICE_PID" >> $START_LOG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
ROOT_PATH="/home/ubuntu/spring-boot" | ||
JAR="$ROOT_PATH/application.jar" | ||
STOP_LOG="$ROOT_PATH/stop.log" | ||
SERVICE_PID=$(pgrep -f $JAR) # 실행중인 Spring 서버의 PID | ||
|
||
if [ -z "$SERVICE_PID" ]; then | ||
echo "서비스 NouFound" >> $STOP_LOG | ||
else | ||
echo "서비스 종료 " >> $STOP_LOG | ||
kill "$SERVICE_PID" | ||
# kill -9 $SERVICE_PID # 강제 종료를 하고 싶다면 이 명령어 사용 | ||
fi |