ci: publish editor image to GHCR - #771
Open
luisalrp wants to merge 4 commits into
Open
Conversation
|
I hit an error while handling your request (Model unavailable on AI Gateway free tier: Free tier users do not have access to this model. Upgrade to paid credits at https://vercel.com/d?to=%2F%5Bteam%5D%2F%7E%2Fai%3Fmodal%3Dtop-up for unrestricted…). Please try again, rephrase, or reach out if it keeps failing. Error id: 8bdf2076-e7df-4ba7-a14d-19a6b7dcc978 |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b10b01d. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

What does this PR do?
Publishes the official editor Docker image to GHCR as part of the release workflow and updates Docker Compose to consume the published image. Stable releases receive both version and
latesttags; beta and recovery releases receive only their version tag. Images are published for amd64 and arm64. Fixes #770.How to test
docker compose configand verify the service usesghcr.io/pascalorg/editor:latestby default.IMAGE_TAGto a release version and verify Compose uses the versioned image.latesttag.linux/amd64andlinux/arm64platforms.Screenshots / screen recording
N/A — non-visual CI and deployment change.
Checklist
bun devbun checkto verify)mainbranchNote
Medium Risk
Release workflow now publishes container artifacts and changes the default deployment path from local builds to GHCR pulls, which depends on registry permissions and public package visibility.
Overview
Editor releases now build and push a multi-arch (
linux/amd64,linux/arm64) image toghcr.io/pascalorg/editoras part of the release workflow wheneditororallis selected. The job getspackages: write, logs into GHCR on non–dry-run releases, and tags images with the release version;latestis added only for patch/minor/major bumps (not beta or recovery-style runs). Dry runs still build but do not push or log in.Docker Compose no longer builds locally—it pulls
ghcr.io/pascalorg/editor:${IMAGE_TAG:-latest}. SETUP.md documentsIMAGE_TAGand one-time steps to make the GHCR package public for unauthenticated pulls. The Dockerfile adds anorg.opencontainers.image.sourcelabel for registry metadata.Reviewed by Cursor Bugbot for commit ba93d72. Bugbot is set up for automated code reviews on this repo. Configure here.