ci: automate android playstore deployment#8
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Release 빌드 성공 시 Android AAB를 Play Store(internal, draft)로 자동 업로드하고, ProGuard mapping 및 배포 Summary를 함께 남기도록 CI 파이프라인을 조정한 PR입니다.
Changes:
- 수동 실행 옵션(
upload_to_play_store)을 제거하고 Deploy job을 자동 실행으로 전환 - ProGuard
mapping.txt아티팩트 다운로드 및 Play Store 업로드 입력에mappingFile추가 - 배포 완료 정보를
GITHUB_STEP_SUMMARY에 추가
Comment on lines
+262
to
+266
| @@ -262,3 +263,15 @@ jobs: | |||
| releaseFiles: ./release/*.aab | |||
| track: internal | |||
| status: draft | |||
| mappingFile: ./mapping/mapping.txt | |||
There was a problem hiding this comment.
[P1] Download mapping.txt를 continue-on-error: true로 처리해 mapping.txt가 없을 수 있는데, 바로 아래 Upload to Play Store에서 mappingFile: ./mapping/mapping.txt를 항상 넘기고 있습니다. mapping 아티팩트가 생성되지 않는 빌드(예: minify 비활성)에서는 파일이 없어 배포 단계가 실패할 가능성이 큽니다. mapping.txt 존재 여부를 확인해 있을 때만 mappingFile을 전달하거나, mapping 포함/미포함 업로드 단계를 분리해 실패를 방지해주세요.
Collaborator
Author
There was a problem hiding this comment.
✅ Resolved in 249bbe2
변경 내용:
mapping.txt 존재 여부를 확인하는 step을 추가하고, mappingFile 파라미터를 조건부로 전달하도록 수정했습니다. mapping 아티팩트가 없는 빌드에서도 배포가 실패하지 않습니다.
Check mapping.txt existence before passing to upload action to prevent deploy failure when ProGuard mapping is not generated. Resolves: #8 (comment)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
변경 사항
테스트