This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a commit to branch release/v1.1.0-incubating
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/release/v1.1.0-incubating by
this push:
new 4220437f4c fix(ci): include litellm-config.yaml in RC docker-compose
bundle (#4652)
4220437f4c is described below
commit 4220437f4c7f880fd7a8a5959fd50b02c6ae23e1
Author: Jiadong Bai <[email protected]>
AuthorDate: Sat May 2 10:20:49 2026 +0000
fix(ci): include litellm-config.yaml in RC docker-compose bundle (#4652)
### What changes were proposed in this PR?
Adds the missing `cp` of `bin/single-node/litellm-config.yaml` into the
bundle directory in the `Create Docker Compose deployment bundle` step
of `.github/workflows/create-release-candidate.yml`.
`bin/single-node/docker-compose.yml` bind-mounts the file:
```yaml
volumes:
- ./litellm-config.yaml:/app/config.yaml:ro
```
Without this copy, the RC tarball ships without `litellm-config.yaml`.
When users extract it and run `docker compose up`, Docker creates an
empty directory at the bind source, and litellm crashes with
`IsADirectoryError: '/app/config.yaml'`.
### Any related issues, documentation, discussions?
Closes #4651
### How was this PR tested?
To be verified by re-running the `Create and upload release candidate
artifacts` workflow against the next RC tag and confirming
`litellm-config.yaml` is present in the docker-compose tarball and that
`docker compose up` starts the litellm container cleanly.
### Was this PR authored or co-authored using generative AI tooling?
Generated-by: Claude Code (Opus 4.7)
Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
(backported from commit de64d706396aad7c09ffa1d0b3683c461a302337)
---
.github/workflows/create-release-candidate.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/create-release-candidate.yml
b/.github/workflows/create-release-candidate.yml
index 4b0ff4bb3a..920919591a 100644
--- a/.github/workflows/create-release-candidate.yml
+++ b/.github/workflows/create-release-candidate.yml
@@ -155,6 +155,7 @@ jobs:
# Copy deployment files
cp "$TEMP_DIR/_raw/bin/single-node/docker-compose.yml" "$BUNDLE_DIR/"
cp "$TEMP_DIR/_raw/bin/single-node/nginx.conf" "$BUNDLE_DIR/"
+ cp "$TEMP_DIR/_raw/bin/single-node/litellm-config.yaml"
"$BUNDLE_DIR/"
cp -r "$TEMP_DIR/_raw/sql" "$BUNDLE_DIR/"
# Patch the SQL mount path for the self-contained bundle layout