fix: 마이페이지 방문장소 응답값 수정 #271
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
name: CD | |
on: | |
push: | |
branches: [ "develop" ] | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
env: | |
working-directory: . | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '21' | |
- name: create application-secret.properties | |
run: | | |
## create application-secret.properties | |
mkdir -p ./offroad-api/src/main/resources | |
cd ./offroad-api/src/main/resources | |
# application-secret.properties 파일 생성 | |
touch ./application-secret.properties | |
# GitHub-Actions 에서 설정한 값을 application-secret.properties 파일에 쓰기 | |
echo "${{ secrets.PROPERTIES_APPLICATION }}" > ./application-secret.properties | |
cat ./application-secret.properties | |
- name: create application.yml | |
run: | | |
## create application-dev.yml | |
cd ./offroad-api/src/main/resources | |
# application-dev.yml 파일 생성 | |
touch ./application-dev.yml | |
# GitHub-Actions 에서 설정한 값을 application-dev.yml 파일에 쓰기 | |
echo "${{ secrets.CD_APPLICATION_DEV }}" > ./application-dev.yml | |
cat ./application-dev.yml | |
working-directory: ${{ env.working-directory }} | |
- name: 빌드 | |
run: | | |
chmod +x gradlew | |
./gradlew :offroad-api:build -x test | |
working-directory: ${{ env.working-directory }} | |
shell: bash | |
- name: docker 로그인 | |
uses: docker/[email protected] | |
- name: login docker hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_LOGIN_USERNAME }} | |
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }} | |
- name: docker image 빌드 및 푸시 | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile-dev | |
push: true | |
tags: offroadserver/offroad | |
- name: docker-compose.yml 파일 EC2 서버로 전송 | |
uses: appleboy/scp-action@master | |
with: | |
username: ubuntu | |
host: ${{ secrets.SERVER_IP }} | |
key: ${{ secrets.SERVER_KEY }} | |
source: "./docker-compose.yml" | |
target: "~" | |
cd: | |
needs: ci | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: docker 컨테이너 실행 | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_USER }} | |
key: ${{ secrets.SERVER_KEY }} | |
script: | | |
cd ~ | |
./deploy.sh |