From 1e05820cc728c9fca3f9287299c06d16037e4932 Mon Sep 17 00:00:00 2001 From: LeeJaehyung <540900@naver.com> Date: Fri, 6 Dec 2024 11:27:22 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20#196=20CI/CD=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20-=20google-account-key=20=EC=8B=9C?= =?UTF-8?q?=ED=81=AC=EB=A6=BF=ED=82=A4=20s3=20=EC=A0=80=EC=9E=A5=20?= =?UTF-8?q?=EB=B6=80=EB=B6=84=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cicd-ec2.yml | 5 ----- .../gt/genti/purchase/dto/request/PurchaseRequestDto.java | 8 ++++---- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cicd-ec2.yml b/.github/workflows/cicd-ec2.yml index 601db436..1e84c56f 100644 --- a/.github/workflows/cicd-ec2.yml +++ b/.github/workflows/cicd-ec2.yml @@ -200,11 +200,6 @@ jobs: # Clean up the temporary directory rm -rf temp_dir - - name: Upload key.json to S3 - if: contains(github.ref, 'staging') - run: | - aws s3 cp ./genti-api/src/main/resources/jsonkey/key.json s3://$S3_BUCKET_NAME/jsonkey/key.json - - name: Upload docker-compose, appspec, afterInstall file to S3 if: contains(github.ref, 'staging') run: | diff --git a/genti-api/src/main/java/com/gt/genti/purchase/dto/request/PurchaseRequestDto.java b/genti-api/src/main/java/com/gt/genti/purchase/dto/request/PurchaseRequestDto.java index 4fccb978..013d3d7b 100644 --- a/genti-api/src/main/java/com/gt/genti/purchase/dto/request/PurchaseRequestDto.java +++ b/genti-api/src/main/java/com/gt/genti/purchase/dto/request/PurchaseRequestDto.java @@ -5,9 +5,9 @@ import lombok.NoArgsConstructor; @Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) // 있어야함 +@NoArgsConstructor(access = AccessLevel.PROTECTED) public class PurchaseRequestDto { - private String packageName; //인앱 상품이 판매된 애플리케이션의 패키지 이름 - private String productId; //인앱 상품 SKU - private String purchaseToken; //안드로이드에서 받아올 구매 토큰 + private String packageName; + private String productId; + private String purchaseToken; }