-
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.
👷 CI. CI/CD 파이프라인 구축
- Loading branch information
Showing
5 changed files
with
123 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,22 @@ | ||
--- | ||
name: issue template | ||
about: 이슈 템플릿 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
# 📝 Preview | ||
|
||
|
||
|
||
|
||
|
||
# ✅ Todo | ||
- [ ] | ||
- [ ] | ||
- [ ] | ||
|
||
|
||
# 📌 Remark |
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 @@ | ||
``` | ||
- commit message가 적절한지 확인해주세요. | ||
- 마지막으로 Coding Convention을 준수했는지 확인해주세요. | ||
- 적절한 branch로 요청했는지 확인해주세요. | ||
- Assignees, Label을 붙여주세요. | ||
- 가능한 이슈를 Link 해주세요. | ||
- PR이 승인된 경우 해당 브랜치는 삭제 부탁드립니다. | ||
``` | ||
|
||
## 관련 이슈 | ||
closed # | ||
|
||
## 변경 사항 및 이유 | ||
해당 pr에서 작업한 내역을 적어주세요. | ||
|
||
## PR Point | ||
변경사항 및 주의 사항 (모듈 설치 등)을 적어주세요. | ||
|
||
## 📸 ScreenShot |
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,72 @@ | ||
name: FairyTale Dev CI/CD | ||
|
||
on: | ||
push: | ||
branches: [ "dev" ] | ||
pull_request: | ||
branches: [ "dev" ] | ||
workflow_dispatch: | ||
|
||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# JDK 설정 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
# gradle build 시간 향상 | ||
- name: Gradle Caching | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# application.yml 파일 생성 | ||
- name: make application.yml | ||
run: | | ||
mkdir -p src/main/resources | ||
echo "$APPLICATION" > src/main/resources/application.properties | ||
env: | ||
APPLICATION: ${{ secrets.APPLICATION }} | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew build -x test | ||
|
||
- name: Docker build | ||
run: | | ||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
docker build -t app . | ||
docker tag app ${{ secrets.DOCKER_USERNAME }}/fairytale:latest | ||
docker push ${{ secrets.DOCKER_USERNAME }}/fairytale:latest | ||
- name: Deploy to dev | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ubuntu | ||
key: ${{ secrets.PRIVATE_KEY }} | ||
script: | | ||
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/fairytale:latest | ||
sudo docker stop $(docker ps -a -q) | ||
sudo docker run -d --log-driver=syslog -p 8080:8080 -e SPRING_PROFILES_ACTIVE= ${{ secrets.DOCKER_USERNAME }}/fairytale:latest | ||
sudo docker rm $(docker ps --filter 'status=exited' -a -q) | ||
sudo docker image prune -a -f | ||
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,3 @@ | ||
FROM openjdk:17 | ||
COPY ./build/libs/TBD-0.0.1-SNAPSHOT.jar fairytale.jar | ||
ENTRYPOINT ["java", "-jar", "fairytale.jar"] |
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