fix(ci): flatten downloaded CLI artifacts before desktop build - #312
Conversation
The goreleaser output directory structure (e.g. dist/devsy-linux_linux_amd64_v1/devsy-linux-amd64) is preserved by upload-artifact, causing downloaded CLI binaries to be nested in subdirectories under $RUNNER_TEMP/devsy-bin/. The desktop build steps expect flat paths like devsy-bin/devsy-linux-amd64. Add a flatten step after download that moves all files to the top level of devsy-bin/ and removes the intermediate directories.
✅ Deploy Preview for devsydev canceled.
|
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
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 |
Summary
dist/devsy-linux_linux_amd64_v1/devsy-linux-amd64), andupload-artifactpreserves this nesting. After download, the desktop build setup steps expect flat paths like$RUNNER_TEMP/devsy-bin/devsy-linux-amd64but find nested directories insteadfind -mindepth 2 -exec mv, then removes empty subdirectories