-
Notifications
You must be signed in to change notification settings - Fork 131
docs(l1,l2): add steps to manually push docker images #5420
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds troubleshooting documentation for manually pushing Docker images when the "latest release" CI workflow fails. It provides step-by-step instructions for authenticating with GitHub Container Registry, pulling RC images, retagging them, and pushing the updated tags.
Key Changes:
- Added a new "Troubleshooting" section to the release process documentation with detailed manual Docker image push instructions
- Removed a broken reference to a non-existent
aligned_mode.mdfile from the documentation summary
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docs/developers/release-process.md | Adds comprehensive troubleshooting section with manual Docker image push workflow including authentication, pulling, retagging, and pushing steps |
| docs/SUMMARY.md | Removes broken link to non-existent aligned_mode.md file from architecture section |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
docs/developers/release-process.md
Outdated
| ```bash | ||
| docker push ghcr.io/lambdaclass/ethrex:X.Y.Z | ||
| docker push ghcr.io/lambdaclass/ethrex:X.Y.Z-l2 | ||
| docker push ghcr.io/lambdaclass/ethrex:lateset |
Copilot
AI
Nov 25, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling error: "lateset" should be "latest".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good bot
docs/developers/release-process.md
Outdated
| ```bash | ||
| docker tag ghcr.io/lambdaclass/ethrex:X.Y.Z-rc.W ghcr.io/lambdaclass/ethrex:X.Y.Z | ||
| docker tag ghcr.io/lambdaclass/ethrex:X.Y.Z-rc.W-l2 ghcr.io/lambdaclass/ethrex:X.Y.Z-l2 | ||
| docker tag ghcr.io/lambdaclass/ethrex:X.Y.Z-rc.W ghcr.io/lambdaclass/ethrex:lateset |
Copilot
AI
Nov 25, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling error: "lateset" should be "latest".
**Motivation** <!-- Why does this pull request exist? What are its goals? --> If CI fails, docker images may not be updated **Description** Add instructions on how to do it manually <!-- A clear and concise general description of the changes this PR introduces --> <!-- Link to issues: Resolves #111, Resolves #222 -->
Motivation
If CI fails, docker images may not be updated
Description
Add instructions on how to do it manually