Skip to content

Commit

Permalink
Merge pull request #2 from KUSITMS-MOAMOA/refactor/#1
Browse files Browse the repository at this point in the history
[Refactor/#1] : CI/CD 파이프라인 수정
  • Loading branch information
oosedus authored Jan 17, 2025
2 parents 3663954 + b76f93c commit 75b4f96
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 81 deletions.
179 changes: 100 additions & 79 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -1,88 +1,109 @@
name: CD
name: CI/CD

on:
push:
branches: [ "develop" ]

jobs:
deploy-ci:
deploy:
runs-on: ubuntu-22.04
env:
working-directory: notify

steps:
- uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '21'


- name: make application-secret.yml
run: |
touch ./src/main/resources/application-secret.yml
echo "${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.yml
shell: bash

- name: make chat-prompt.txt
run: |
touch ./src/main/resources/chat-prompt.txt
echo "${{ secrets.CHAT_PROMPT }}" > ./src/main/resources/chat-prompt.txt
shell: bash

- name: make chat-summary-prompt.txt
run: |
cat <<EOF > ./src/main/resources/chat-summary-prompt.txt
${{ secrets.CHAT_SUMMARY_PROMPT }}
EOF
shell: bash

- name: make memo-summary-prompt.txt
run: |
touch ./src/main/resources/memo-summary-prompt.txt
echo "${{ secrets.MEMO_SUMMARY_PROMPT }}" > ./src/main/resources/memo-summary-prompt.txt
shell: bash

- name: make ability-analysis-prompt.txt
run: |
cat <<EOF > ./src/main/resources/ability-analysis-prompt.txt
${{ secrets.ABILITY_ANALYSIS_PROMPT }}
EOF
shell: bash


- name: 빌드
run: |

steps:
- uses: actions/checkout@v3

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '21'

- name: Grant execute permission for gradlew
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash

- name: docker build 가능하도록 환경 설정
uses: docker/setup-buildx-action@v2.9.1

- name: docker hub에로그인
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }}
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }}

- name: docker image 빌드 및 푸시
run: |
docker build --platform linux/amd64 -t corecord/notify .
docker push corecord/notify
deploy-cd:
needs: deploy-ci
runs-on: ubuntu-22.04
steps:
- name: 도커 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.RELEASE_HOST }}
username: ${{ secrets.RELEASE_USERNAME }}
key: ${{ secrets.RELEASE_KEY }}
script: |
sudo chmod +x /home/ubuntu/deploy.sh
sudo /home/ubuntu/deploy.sh
- name: Generate afterInstall.sh
run: |
mkdir -p ./scripts
cat <<EOF > ./scripts/afterInstall.sh
${{ secrets.AFTER_INSTALL_SCRIPT }}
EOF
shell: bash

- name: Set execute permission for afterInstall.sh
run: chmod +x ./scripts/afterInstall.sh

- name: Generate appspec.yml
run: |
cat <<EOF > appspec.yml
${{ secrets.APPSPEC_YML }}
EOF
shell: bash

- name: make application-secret.yml
run: |
touch ./src/main/resources/application-secret.yml
echo "${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.yml
shell: bash

- name: make chat-prompt.txt
run: |
touch ./src/main/resources/chat-prompt.txt
echo "${{ secrets.CHAT_PROMPT }}" > ./src/main/resources/chat-prompt.txt
shell: bash

- name: make chat-summary-prompt.txt
run: |
cat <<EOF > ./src/main/resources/chat-summary-prompt.txt
${{ secrets.CHAT_SUMMARY_PROMPT }}
EOF
shell: bash

- name: make memo-summary-prompt.txt
run: |
touch ./src/main/resources/memo-summary-prompt.txt
echo "${{ secrets.MEMO_SUMMARY_PROMPT }}" > ./src/main/resources/memo-summary-prompt.txt
shell: bash

- name: make ability-analysis-prompt.txt
run: |
cat <<EOF > ./src/main/resources/ability-analysis-prompt.txt
${{ secrets.ABILITY_ANALYSIS_PROMPT }}
EOF
shell: bash

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

- name: Build, tag, and push image to Amazon ECR
run: |
ECR_REGISTRY=${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY=moamoa
IMAGE_TAG=latest
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Upload to S3
run: |
S3_BUCKET_NAME=${{ secrets.S3_BUCKET_NAME }}
zip -r ./$GITHUB_SHA.zip ./scripts appspec.yml
aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$S3_BUCKET_NAME
- name: Deploy to EC2 with CodeDeploy
run: |
CODE_DEPLOY_APPLICATION_NAME=${{ secrets.CODE_DEPLOY_APPLICATION_NAME }}
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME=${{ secrets.CODE_DEPLOY_DEPLOYMENT_GROUP_NAME }}
S3_BUCKET_NAME=${{ secrets.S3_BUCKET_NAME }}
aws deploy create-deployment \
--application-name $CODE_DEPLOY_APPLICATION_NAME \
--deployment-config-name CodeDeployDefault.AllAtOnce \
--deployment-group-name $CODE_DEPLOY_DEPLOYMENT_GROUP_NAME \
--s3-location bucket=$S3_BUCKET_NAME,key=$GITHUB_SHA.zip,bundleType=zip
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ FROM amd64/amazoncorretto:21

WORKDIR /app

COPY ./build/libs/dev-0.0.1-SNAPSHOT.jar /app/notify.jar
COPY ./build/libs/dev-0.0.1-SNAPSHOT.jar /app/moamoa.jar

CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "-Dspring.profiles.active=dev", "/app/notify.jar"]
CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "-Dspring.profiles.active=dev", "/app/moamoa.jar"]

0 comments on commit 75b4f96

Please sign in to comment.