From 8b25e8d73045c82f81c5130a701916a46a19b7c9 Mon Sep 17 00:00:00 2001 From: SULLUNG Date: Sat, 25 Jan 2025 22:31:00 +0900 Subject: [PATCH] Dev/order (#206) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * modify faker library logging level * 주석 추가 * number of orders for specific service API * modify service image upload api, add attribute on service image relations * black, isort * 인프라 문제 해결될 때 까지 CI/CD 비활성화 * 정상화 * github actions script 수정 * 오타 수정 * deploy만 테스트 * deploy만 테스트 2 --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3e459735..058b5ab1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,7 +46,11 @@ jobs: host: ${{ secrets.EC2_HOST }} username: ${{ secrets.EC2_USERNAME }} key: ${{ secrets.EC2_SSH_KEY }} - script: ./deploy.sh + script: | + export ECR_REGISTRY=${{ steps.login-ecr.outputs.registry }} + export ECR_REPOSITORY=${{ secrets.ECR_REPOSITORY_NAME }} + export IMAGE_TAG=${{ github.sha }} + ./deploy.sh - name: 배포 결과 확인 if: always()