Skip to content

Commit

Permalink
Merge pull request #239 from Genti2024/feat/pgreq-two
Browse files Browse the repository at this point in the history
Fix: #196 CI/CD 파일 수정 - google-account-key 시크릿키 s3 저장 부분 삭제
  • Loading branch information
LeeJae-H authored Dec 6, 2024
2 parents 3568949 + 1e05820 commit d8d5087
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/cicd-ec2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
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; //인앱 상품 SKU
private String purchaseToken; //안드로이드에서 받아올 구매 토큰
private String packageName;
private String productId;
private String purchaseToken;
}

0 comments on commit d8d5087

Please sign in to comment.