From a140fbf4ef291fc27ab45c49e7bc60b8f27c28a8 Mon Sep 17 00:00:00 2001 From: San Kim Date: Sat, 21 Sep 2024 16:26:54 +0900 Subject: [PATCH] fix --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 96ff2da..5b57127 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,10 +47,10 @@ jobs: IMAGE_TAG: ${{ github.sha }} run: | ./gradlew jib \ - -Djib.to.image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG \ - -Djib.to.tags=latest \ - -Djib.to.auth.username=${{ secrets.AWS_ACCESS_KEY_ID }} \ - -Djib.to.auth.password=${{ secrets.AWS_SECRET_ACCESS_KEY }} + -Djib.to.image="$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" \ + -Djib.to.tags="latest" \ + -Djib.to.auth.username="${{ secrets.AWS_ACCESS_KEY_ID }}" \ + -Djib.to.auth.password="${{ secrets.AWS_SECRET_ACCESS_KEY }}" - name: Save image info run: |