test: 테스트를 위해 CommentController 캐시 기능 임시 제거 #21
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: Deploy To EC2 | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH(원격 접속)로 EC2에 접속하기 | |
uses: appleboy/[email protected] | |
env: | |
APPLICATION_PROPERTIES: ${{ secrets.APPLICATION_PROPERTIES }} | |
with: | |
host: ${{ secrets.EC2_HOST }} | |
username: ${{ secrets.EC2_USERNAME }} | |
key: ${{ secrets.EC2_PRIVATE_KEY }} | |
envs: APPLICATION_PROPERTIES | |
script_stop: true | |
script: | | |
cd /home/ubuntu/LostArk | |
rm -rf src/main/resources/application.properties | |
git pull origin dev | |
echo "$APPLICATION_PROPERTIES" > src/main/resources/application.properties | |
./gradlew clean build | |
docker compose -f compose-prod.yml down | |
docker compose -f compose-prod.yml up --build -d |