-
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.
Browse files
Browse the repository at this point in the history
[feat] CICD 환경 구축
- Loading branch information
Showing
3 changed files
with
105 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,63 @@ | ||
name: MODDY DEV CD | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
deploy-ci | ||
runs-on: ubuntu-22.04 | ||
env: | ||
working-directory: moddy-server | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: application.yml 생성 | ||
run: | | ||
cd src/main/resources | ||
echo "${{ secrets.APPLICATION }}" > ./application.yml | ||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
shell: bash | ||
|
||
######## 여기까지는 CI.yml와 동일 ######### | ||
|
||
- 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 moddy1217/moddy-server . | ||
docker push moddy1217/moddy-server | ||
deploy-cd: | ||
needs: deploy-ci | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: 도커 컨테이너 실행 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.RELEASE_SERVER_IP }} | ||
username: ${{ secrets.RELEASE_SERVER_USER }} | ||
key: ${{ secrets.RELEASE_SERVER_KEY }} | ||
script: | | ||
cd ~ | ||
./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,34 @@ | ||
name: MODDY DEV CI | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
working-directory: moddy-server | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '17' | ||
|
||
- name: application.yml 생성 | ||
run: | | ||
cd src/main/resources | ||
echo "${{ secrets.APPLICATION }}" > ./application.yml | ||
- name: 빌드 | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build -x test | ||
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,8 @@ | ||
FROM amd64/amazoncorretto:17 | ||
|
||
WORKDIR /app | ||
|
||
COPY ./build/libs/moddy-server-0.0.1-SNAPSHOT.jar /app/moddy-server.jar | ||
|
||
CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "-Dspring.profiles.active=test", "moddy-server.jar"] | ||
|