-
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.
- Loading branch information
Showing
5 changed files
with
251 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,25 @@ | ||
--- | ||
name: Feature request | ||
about: Feature request | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
--- | ||
name: Feature Request | ||
about: 기능 개발 Template | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 🚀 About Issue 🚀 | ||
<!-- 이슈에 대한 내용을 설명해주세요. --> | ||
|
||
|
||
## ✅ Todo | ||
<!-- 해야 할 일들을 적어주세요. --> | ||
- [ ] todo ! |
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 @@ | ||
## 📣 Related Issue | ||
<!-- 관련 이슈를 적어주세요. --> | ||
- close # | ||
|
||
## 📝 Summary | ||
<!-- 해당 PR의 주요 작업 내용을 적어주세요 --> | ||
|
||
|
||
## 🙏 Question & PR point | ||
<!-- PR과정에서 다른 팀원이 알아야할 사항이나 궁금증을 적어주세요 --> | ||
|
||
|
||
## 📬 Postman | ||
<!-- postman 스크린샷을 첨부해주세요 --> |
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,87 @@ | ||
name: Dev-CD | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
deploy-ci: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
working-directory: WableServer | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: application.yaml 생성 | ||
run: | | ||
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yaml | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: fire-base.json 생성 | ||
id: create-json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "fire-base.json" | ||
json: ${{ secrets.FIRE_BASE_DEV }} | ||
dir: 'WableServer/src/main/resources/' | ||
|
||
- name: fire-base.json 파일 확인 | ||
run: | | ||
if [ -f "src/main/resources/fire-base.json" ]; then | ||
echo "fire-base.json 파일이 존재합니다." | ||
cat src/main/resources/fire-base.json | ||
else | ||
echo "fire-base.json 파일이 존재하지 않습니다." | ||
exit 1 | ||
fi | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
working-directory: ${{ env.working-directory }} | ||
shell: bash | ||
|
||
######## 여기까지는 CI.yaml과 동일 ######### | ||
|
||
- name: docker build 가능하도록 환경 설정 | ||
uses: docker/[email protected] | ||
|
||
- name: docker hub에로그인 | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }} | ||
|
||
- name: docker image 빌드 및 푸시 | ||
run: | | ||
docker build --platform linux/amd64 -t dontbedocker/wable-dev -f Dockerfile-Dev . | ||
docker push dontbedocker/wable-dev | ||
working-directory: ${{ env.working-directory }} | ||
|
||
deploy-cd: | ||
needs: deploy-ci | ||
runs-on: ubuntu-22.04 | ||
|
||
######## 여기까지는 기존 CD.yaml과 동일 ######### | ||
|
||
steps: | ||
- name: 도커 컨테이너 실행 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.DEVELOP_SERVER_IP }} | ||
username: ${{ secrets.DEVELOP_SERVER_USER }} | ||
key: ${{ secrets.DEVELOP_SERVER_KEY }} | ||
script: | | ||
cd ~ | ||
sudo ./deploy.sh | ||
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: Dev-CI | ||
|
||
on: | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
working-directory: WableServer | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: application.yaml 생성 | ||
run: | | ||
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yaml | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: fire-base.json 생성 | ||
run: | | ||
echo "${{ secrets.FIRE_BASE_DEV }}" > src/main/resources/fire-base.json | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
working-directory: ${{ env.working-directory }} | ||
shell: bash |
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,87 @@ | ||
name: Prod-CD | ||
|
||
on: | ||
release: | ||
types: [ "published" ] | ||
|
||
jobs: | ||
deploy-ci: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
working-directory: WableServer | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: application.yaml 생성 | ||
run: | | ||
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yaml | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: fire-base.json 생성 | ||
id: create-json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "fire-base.json" | ||
json: ${{ secrets.FIRE_BASE_DEV }} | ||
dir: 'WableServer/src/main/resources/' | ||
|
||
- name: fire-base.json 파일 확인 | ||
run: | | ||
if [ -f "src/main/resources/fire-base.json" ]; then | ||
echo "fire-base.json 파일이 존재합니다." | ||
cat src/main/resources/fire-base.json | ||
else | ||
echo "fire-base.json 파일이 존재하지 않습니다." | ||
exit 1 | ||
fi | ||
working-directory: ${{ env.working-directory }} | ||
|
||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
working-directory: ${{ env.working-directory }} | ||
shell: bash | ||
|
||
######## 여기까지는 CI.yaml과 동일 ######### | ||
|
||
- name: docker build 가능하도록 환경 설정 | ||
uses: docker/[email protected] | ||
|
||
- name: docker hub에로그인 | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }} | ||
|
||
- name: docker image 빌드 및 푸시 | ||
run: | | ||
docker build --platform linux/amd64 -t dontbedocker/wable-prod -f Dockerfile-Prod . | ||
docker push dontbedocker/wable-prod | ||
working-directory: ${{ env.working-directory }} | ||
|
||
deploy-cd: | ||
needs: deploy-ci | ||
runs-on: ubuntu-22.04 | ||
|
||
######## 여기까지는 기존 CD.yaml과 동일 ######### | ||
|
||
steps: | ||
- name: 도커 컨테이너 실행 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.PROD_SERVER_IP }} | ||
username: ${{ secrets.PROD_SERVER_USER }} | ||
key: ${{ secrets.PROD_SERVER_KEY }} | ||
script: | | ||
cd ~ | ||
sudo ./deploy.sh | ||