Merge pull request #47 from PBTP/refacotr/tsconfig #42
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: ECR Push and EC2 Deploy | |
on: | |
push: # 트리거 | |
branches: | |
- main | |
- dev | |
env: | |
AWS_REGION: ap-northeast-2 | |
ECR_REPOSITORY: ${{ secrets.ECR_REPOSITORY_NAME }} | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
id: build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
IMAGE_TAG: latest | |
run: | | |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | |
- name: EC2 server deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.EC2_HOST_IP }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
username: ${{ secrets.EC2_USER_NAME }} | |
port: ${{ secrets.EC2_PORT }} | |
script: | | |
cd ~/app && | |
sudo $(aws ecr get-login --no-include-email --region ap-northeast-2) && | |
sudo docker-compose pull mongle-server && | |
sudo docker-compose down && | |
sudo echo 'y' | sudo docker container prune && | |
sudo docker-compose up -d && | |
sudo echo 'y' | sudo docker system prune |