Skip to content

Commit 6919b9d

Browse files
graycreateclaude
andcommitted
debug: add APK object structure logging
- Print complete APK object structure to understand available fields - This will help identify the correct field name for downloadId 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3f09f0d commit 6919b9d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,13 @@ jobs:
455455
456456
print(f"Found {len(result['generatedApks'])} generated APKs")
457457
458+
# Debug: Print all APK structures
459+
for i, apk in enumerate(result['generatedApks']):
460+
print(f"APK {i} structure:")
461+
for key, value in apk.items():
462+
print(f" {key}: {value}")
463+
print()
464+
458465
# Find universal APK and get downloadId
459466
universal_apk = None
460467
for apk in result['generatedApks']:

0 commit comments

Comments
 (0)