Skip to content

Commit

Permalink
Fix malformed image base for Nvidia actions script
Browse files Browse the repository at this point in the history
  • Loading branch information
robballantyne committed Apr 15, 2024
1 parent 17cfa29 commit cca117b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
fi
[ -z "$COMFYUI_SHA" ] && { echo "Error: COMFYUI_SHA is empty. Exiting script." >&2; exit 1; }
echo "COMFYUI_SHA=${COMFYUI_SHA}" >> ${GITHUB_ENV}
base_tag="newbase-${{ matrix.build.pytorch }}-py${{ matrix.build.python }}-cpu-${{ env.UBUNTU_VERSION }}"
sha_tag="${base_tag}-${COMFYUI_SHA}"
TAGS="${img_path}:${sha_tag}"
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
with:
context: build
build-args: |
IMAGE_BASE="ghcr.io/ai-dock/python:${{ matrix.build.python }}-cuda-${{ matrix.build.cuda }}-${{ env.UBUNTU_VERSION }}"
IMAGE_BASE=ghcr.io/ai-dock/python:${{ matrix.build.python }}-cuda-${{ matrix.build.cuda }}-${{ env.UBUNTU_VERSION }}
PYTHON_VERSION=${{ matrix.build.python }}
PYTORCH_VERSION=${{ matrix.build.pytorch }}
COMFYUI_SHA=${{ env.COMFYUI_SHA }}
Expand Down

0 comments on commit cca117b

Please sign in to comment.