-
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 #45 from everymeals/hotfix/cd-dev
[hotfix] #13 Dev 서버 배포 시, application-dev 프로퍼티 주입 명령어 추가
- Loading branch information
Showing
2 changed files
with
86 additions
and
3 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,83 @@ | ||
name: CD for Dev | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# 1) 워크플로우 실행 전 기본적으로 체크아웃 필요 | ||
- uses: actions/checkout@v3 | ||
|
||
# 2) JDK 17 버전 설치 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 17 | ||
distribution: 'zulu' | ||
|
||
# 3) Gradle Caching | ||
- name: Gradle Cashing | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# 4) Gradle 권한 부여 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
# 5) Set for application-secret.yml | ||
- name: Make application-secret.yml | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application-secret.yml | ||
echo "${{ secrets.PROPERTIES_SECRET }}" > ./application-secret.yml | ||
shell: bash | ||
- name: Make application-dev.yml | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application-dev.yml | ||
echo "${{ secrets.PROPERTIES_SECRET_DEV }}" > ./application-dev.yml | ||
shell: bash | ||
- name: Make application-prod.yml | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application-prod.yml | ||
echo "${{ secrets.PROPERTIES_SECRET_PROD }}" > ./application-prod.yml | ||
shell: bash | ||
|
||
# 6) 빌드 | ||
- name: Build with gradle | ||
run: ./gradlew bootJar | ||
|
||
# 7) Docker 빌드 & 푸쉬 | ||
- name: docker build and push | ||
run: | | ||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
docker build -f Dockerfile -t ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY}} . | ||
docker push ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY}} | ||
# 9) Deploy (DEV-Server) | ||
- name: Deploy (DEV) | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.EC2_HOST }} | ||
username: ${{ secrets.EC2_USERNAME }} | ||
key: ${{ secrets.EC2_KEY }} | ||
script: | | ||
docker stop dev | ||
docker rm dev | ||
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY}} | ||
sudo docker run -d --name dev -v /var/log/app:/var/log/app -v /etc/localtime:/etc/localtime:ro -e TZ=Asia/Seoul -e ENVIRONMENT_VALUE=-Dspring.profiles.active=dev -p 8085:8080 ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY}}:latest | ||
docker rmi -f $(docker images -f "dangling=true" -q) |
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