-
Notifications
You must be signed in to change notification settings - Fork 1
chore: add GoReleaser #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Warning Rate limit exceeded@yordis has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 25 minutes and 38 seconds before requesting another review. ⌛ 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. 📒 Files selected for processing (4)
WalkthroughAdds GoReleaser configuration and a CD workflow to build and release two binaries across OS/architectures, pins golangci-lint in CI, updates .gitignore to exclude GoReleaser artifacts, and revises Taskfile to streamline linting and cleaning while removing several tasks. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Dev as Developer/GitHub Release
participant GA as GitHub Actions (cd)
participant Test as Job: test
participant GR as Job: goreleaser
participant GL as GoReleaser
participant GH as GitHub Releases
Dev->>GA: Trigger (release or workflow_dispatch)
GA->>Test: Checkout, Setup Go, go test -race, go vet (only on dispatch)
Test-->>GA: Success/Skipped
GA->>GR: Start (needs: test)
GR->>GR: Extract/validate component and version from tag/inputs
alt workflow_dispatch with dry_run=true
GR->>GL: goreleaser release --skip=publish
GL-->>GR: Snapshot artifacts in dist/
GR->>GA: Upload artifacts (snapshot)
else release event or dry_run=false
GR->>GL: goreleaser release (publish)
GL->>GH: Create release, upload archives/checksums
GR->>GH: Attest build provenance
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Poem
Pre-merge checks and finishing touches and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
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. 🧪 Early access (Sonnet 4.5): enabledWe are currently testing the Sonnet 4.5 model, which is expected to improve code review quality. However, this model may lead to increased noise levels in the review comments. Please disable the early access features if the noise level causes any inconvenience. Note:
Comment |
4dffbac to
f03d0f8
Compare
fc16c6c to
76e6133
Compare
Signed-off-by: Yordis Prieto <yordis.prieto@gmail.com>
No description provided.