We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb3c40 commit 563eaabCopy full SHA for 563eaab
.github/workflows/deploy.yml
@@ -69,6 +69,14 @@ jobs:
69
run: |
70
docker build -t ${{ env.DOCKER_IMAGE_NAME }} .
71
72
+ # AWS 인증 (IAM 사용자 Access Key, Secret Key 활용)
73
+ - name: Configure AWS credentials
74
+ uses: aws-actions/configure-aws-credentials@v1
75
+ with:
76
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
77
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
78
+ aws-region: ${{ env.AWS_REGION }}
79
+
80
# AWS ECR에 로그인
81
- name: Log in to Amazon ECR
82
uses: aws-actions/amazon-ecr-login@v1
0 commit comments