-
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.
Merge pull request #76 from capstone-five-ai/feat/prod-cd
feat: Prod 서버 자동 배포 스크립트 작성
- Loading branch information
Showing
4 changed files
with
69 additions
and
2 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,62 @@ | ||
name: deploy on prod server | ||
|
||
on: | ||
push: | ||
branches: [test/main-cd] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 체크아웃 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
|
||
- name: 서브모듈 업데이트 | ||
run: | | ||
git submodule update --remote | ||
- name: JDK 11 설치 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'corretto' | ||
java-version: '11' | ||
cache: 'gradle' | ||
|
||
- name: Gradle에 실행 권한 부여 | ||
run: chmod +x gradlew | ||
|
||
- name: 빌드 | ||
run: ./gradlew build -x test | ||
|
||
- name: DockerHub 로그인 | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Docker 이미지 빌드 & DockerHub에 Push | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./docker | ||
file: Dockerfile-prod | ||
push: true | ||
tags: ${{ secrets.DOCKERHUB_USERNAME }}/qtudy-server:prod | ||
|
||
- name: EC2 서버에 배포 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.PROD_SERVER_HOST }} | ||
username: ${{ secrets.PROD_SERVER_USERNAME }} | ||
key: ${{ secrets.PROD_SERVER_PEM_KEY }} | ||
envs: GITHUB_SHA | ||
script: | | ||
sudo docker stop $(sudo docker ps -a -q) | ||
sudo docker rm $(sudo docker ps -a -q) | ||
sudo docker pull ${{secrets.DOCKERHUB_USERNAME}}/qtudy-server:prod | ||
sudo docker run -d -p 8080:8080 --name qtudy-server-container ${{secrets.DOCKERHUB_USERNAME}}/qtudy-server:prod | ||
sudo docker image prune -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
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,4 @@ | ||
FROM amazoncorretto:11-alpine-jdk | ||
EXPOSE 8080 | ||
COPY ./build/libs/Qtudy-server-0.0.1-SNAPSHOT.jar /app.jar | ||
CMD ["java", "-jar", "app.jar", "--spring.profiles.active=deploy"] |
File renamed without changes.