-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
�v1.0.0
- Loading branch information
Showing
160 changed files
with
2,894 additions
and
832 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,38 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
categories: | ||
- title: '🎁 새로운 기능이 추가되었어요' | ||
labels: ['Type: Feature'] | ||
- title: '🐞 기존 버그가 수정되었어요' | ||
labels: ['Type: Bug'] | ||
- title: '🐬 코드를 개선했어요' | ||
labels: | ||
- 'Type: Improvement' | ||
- 'Type: Chore' | ||
- title: '⚙️ 프로젝트를 개선했어요' | ||
labels: | ||
- 'Type: Infra' | ||
- 'Type: Chore' | ||
- 'Type: Document' | ||
- 'Type: Fix' | ||
- title: '🚀 배포' | ||
labels: | ||
- 'deployment' | ||
|
||
change-template: '- $TITLE #$NUMBER @$AUTHOR ' | ||
template: | | ||
## 이번 버전의 변경사항은 아래와 같아요 | ||
--- | ||
$CHANGES | ||
no-changes-template: '변경사항이 없어요' | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch |
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
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
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,131 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | ||
|
||
name: BackEnd - CI/CD(deploy) | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
types: [ closed ] | ||
|
||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
deploy-prod: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
environment: production | ||
env: | ||
DEPLOYMENT_GROUP_NAME: meeteam-app | ||
S3_BUCKET_DIR_NAME: prod | ||
steps: | ||
- name: ✅ Checkout branch | ||
uses: actions/checkout@v3 | ||
# JDK를 17 버전으로 셋팅한다. | ||
- name: ⚙️ Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
# Gradle을 캐싱한다 -> 빌드 속도가 증가하는 효과가 있다. | ||
- name: ✅ Gradle 캐싱 | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# 프로젝트 저장소에 업로드하면 안되는 설정 파일들을 만들어줍니다. | ||
- name: 🗂️ Make config | ||
run: | | ||
# src/main/resources 경로 이동 | ||
cd ./src/main/resources | ||
# yml 파일 생성 | ||
touch ./application-prod.yml | ||
echo "$APPLICATION_PROD" > ./application-prod.yml | ||
# 키 파일 생성 | ||
touch ./private-key.pem | ||
echo "$CLOUD_FRONT_KEY" > ./private-key.pem | ||
# 폴더 생성 | ||
mkdir templates | ||
# 메일 관련된 html 파일 생성 | ||
cd ./templates | ||
touch ./ApproveMail.html | ||
echo "$MAIL_APPROVE_TEMPLATE" > ./ApproveMail.html | ||
touch ./UniversityAuthMail.html | ||
echo "$MAIL_VERIFY_TEMPLATE" > ./UniversityAuthMail.html | ||
touch ./ApplicationNotificationMail.html | ||
echo "$MAIL_APPLICATION_NOTIFICATION_TEMPLATE" > ./ApplicationNotificationMail.html | ||
env: | ||
APPLICATION_PROD: ${{ secrets.APPLICATION_PROD }} | ||
MAIL_APPROVE_TEMPLATE: ${{ secrets.MAIL_APPROVE_TEMPLATE }} | ||
MAIL_VERIFY_TEMPLATE: ${{ secrets.MAIL_VERIFY_TEMPLATE }} | ||
MAIL_APPLICATION_NOTIFICATION_TEMPLATE: ${{ secrets.MAIL_APPLICATION_NOTIFICATION_TEMPLATE }} | ||
CLOUD_FRONT_KEY: ${{ secrets.CLOUD_FRONT_KEY }} | ||
shell: bash | ||
|
||
- name: ⚙️ Gradle 권한 부여 | ||
run: chmod +x gradlew | ||
|
||
- name: ⚙️ Gradle로 빌드 실행 | ||
run: ./gradlew bootjar | ||
# 배포에 필요한 여러 설정 파일과 프로젝트 빌드파일을 zip 파일로 모아준다. | ||
- name: 📦 zip file 생성 | ||
run: | | ||
mkdir deploy | ||
mkdir deploy/prod | ||
cp ./docker/prod/docker-compose.prod.yml ./deploy/prod | ||
cp ./docker/prod/Dockerfile ./deploy/prod | ||
cp ./src/main/resources/private-key.pem ./deploy/prod | ||
cp ./build/libs/*.jar ./deploy/prod | ||
cp ./scripts/deploy.sh ./deploy/ | ||
cp ./appspec.yml ./deploy/ | ||
zip -r -qq ./spring-app.zip ./deploy | ||
|
||
# AWS에 연결해준다. | ||
- name: 🌎 AWS 연결 | ||
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: ${{ secrets.AWS_REGION }} | ||
|
||
# S3에 프로젝트를 업로드 한다. | ||
- name: 🚛 S3에 프로젝트 업로드 | ||
run: | | ||
aws s3 cp \ | ||
--region ap-northeast-2 \ | ||
./spring-app.zip s3://${{ secrets.S3_BUCKET_NAME }}/${{ env.S3_BUCKET_DIR_NAME }}/spring-app.zip | ||
# CodeDelploy에 배포를 요청한다. | ||
- name: 🚀 Code Deploy 배포 요청 | ||
run: aws deploy create-deployment --application-name meeteam-app | ||
--deployment-config-name CodeDeployDefault.OneAtATime | ||
--deployment-group-name ${{ env.DEPLOYMENT_GROUP_NAME }} | ||
--s3-location bucket=${{ secrets.S3_BUCKET_NAME }},bundleType=zip,key=${{ env.S3_BUCKET_DIR_NAME }}/spring-app.zip | ||
|
||
- name: Discord 알림 봇 | ||
uses: sarisia/actions-status-discord@v1 | ||
if: ${{ failure() }} | ||
with: | ||
title: ❗️ Backend CD failed ❗️ | ||
webhook: ${{ secrets.DISCORD_WEBHOOK }} | ||
color: FF0000 |
Oops, something went wrong.