fix for generate debug assets out of memory error#872
Conversation
📝 Walkthrough
Risks & Notes:
WalkthroughGitHub Actions workflow updated: curl upload option changed from Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
.github/workflows/generate_assets.yml (1)
185-202: Remove@prefix from--upload-filearguments to fix upload failures.The
@prefix is not supported by--upload-file; it's only valid for--dataand--formoptions. curl will attempt to open a literal filename starting with@, causing the uploads to fail.Fix
- --upload-file @"${V8_PATH}" \ + --upload-file "${V8_PATH}" \ ... - --upload-file @"${V7_PATH}" \ + --upload-file "${V7_PATH}" \
Fixes the out of memory error that curl encounters when uploading ~1Gb assets zips files to Google Drive