fix : query문 exist 수정 #142
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: [ "main" ] | |
jobs: | |
deploy-ci: | |
runs-on: ubuntu-24.04 | |
env: | |
working-directory: '.' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: 리소스 디렉토리 생성 | |
run: mkdir -p src/main/resources | |
working-directory: ${{ env.working-directory }} | |
- name: application.yaml 생성 | |
run: | | |
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yaml | |
working-directory: ${{ env.working-directory }} | |
- name: 빌드 | |
run: | | |
chmod +x gradlew | |
./gradlew build -x test | |
working-directory: ${{ env.working-directory }} | |
shell: bash | |
- name: application.yaml 생성 | |
run: | | |
cd src/main/resources | |
echo "${{ secrets.APPLICATION }}" > ./application.yaml | |
working-directory: ${{ env.working-directory }} | |
- name: 빌드 | |
run: | | |
chmod +x gradlew | |
./gradlew build -x test | |
working-directory: ${{ env.working-directory }} | |
shell: bash | |
- 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 togetherjourney/together . | |
docker push togetherjourney/together | |
working-directory: ${{ env.working-directory }} | |
deploy-cd: | |
needs: deploy-ci | |
runs-on: ubuntu-24.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 ~ | |
sudo chmod +x deploy.sh | |
./deploy.sh |