Fix incorrect image type in publish-to-docker workflow (#819)

This commit is contained in:
Yuan Tang 2025-01-18 00:33:03 -05:00 committed by GitHub
parent 5a63d0ff1d
commit 5379eca9fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,9 +75,9 @@ jobs:
TEMPLATES=("ollama" "bedrock" "remote-vllm" "fireworks" "together" "tgi" "meta-reference-gpu")
for template in "${TEMPLATES[@]}"; do
if [ "$PYPI_SOURCE" = "testpypi" ]; then
TEST_PYPI_VERSION=${{ steps.version.outputs.version }} llama stack build --template $template --image-type docker
TEST_PYPI_VERSION=${{ steps.version.outputs.version }} llama stack build --template $template --image-type container
else
PYPI_VERSION=${{ steps.version.outputs.version }} llama stack build --template $template --image-type docker
PYPI_VERSION=${{ steps.version.outputs.version }} llama stack build --template $template --image-type container
fi
done