bobbai00 opened a new pull request, #4231: URL: https://github.com/apache/texera/pull/4231
## Summary - Fix image tag mismatch between build and release workflows that causes `manifest unknown` errors when running `docker compose up` from the release bundle ## Changes - In `create-release-candidate.yml`, replace `git rev-parse --short` (variable-length) with `git rev-parse | cut -c1-7` (always 7 chars), matching the `build-and-push-images` workflow which uses `sha[:7]` ## Root cause - `git rev-parse --short` produces the *minimum unique* prefix, which varies by repo (e.g. 9 chars: `9fd356c3b`) - `build-and-push-images` uses GitHub API `sha[:7]`, always producing 7 chars (e.g. `9fd356c`) - The release bundle `.env` gets the longer hash, but images are tagged with the shorter one → pull fails Fixes #4230 ## Test plan - [x] Verified `docker pull ghcr.io/apache/texera-dashboard-service:9fd356c` succeeds (7-char tag) - [x] Verified `docker pull ghcr.io/apache/texera-dashboard-service:9fd356c3b` fails with `manifest unknown` (9-char tag) - [x] Fixed `.env` locally and confirmed all 11 containers start successfully with `docker compose up -d` 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
