Skip to content

Commit

Permalink
Revert "Fix: #196 CI/CD 파일 수정 - google-account-key 시크릿키 s3 저장 부분 삭제"
Browse files Browse the repository at this point in the history
This reverts commit 1e05820.
  • Loading branch information
LeeJae-H committed Dec 11, 2024
1 parent cb93b22 commit e6f6f50
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/cicd-ec2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ 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: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
private String purchaseToken;
private String packageName; //인앱 상품이 판매된 애플리케이션의 패키지 이름
private String productId; //인앱 상품 SKU
private String purchaseToken; //안드로이드에서 받아올 구매 토큰
}

0 comments on commit e6f6f50

Please sign in to comment.