forked from phoenix-oss/llama-stack-mirror
Fix incorrect image type in publish-to-docker workflow (#819)
This commit is contained in:
parent
5a63d0ff1d
commit
5379eca9fd
1 changed files with 2 additions and 2 deletions
4
.github/workflows/publish-to-docker.yml
vendored
4
.github/workflows/publish-to-docker.yml
vendored
|
@ -75,9 +75,9 @@ jobs:
|
||||||
TEMPLATES=("ollama" "bedrock" "remote-vllm" "fireworks" "together" "tgi" "meta-reference-gpu")
|
TEMPLATES=("ollama" "bedrock" "remote-vllm" "fireworks" "together" "tgi" "meta-reference-gpu")
|
||||||
for template in "${TEMPLATES[@]}"; do
|
for template in "${TEMPLATES[@]}"; do
|
||||||
if [ "$PYPI_SOURCE" = "testpypi" ]; then
|
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
|
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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue