From f2006194dcffd292b8d554faca4eb51a94248361 Mon Sep 17 00:00:00 2001 From: Donato Capitella Date: Wed, 6 Aug 2025 09:06:18 +0100 Subject: [PATCH] Updating build scripts --- .github/workflows/build_and_publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index c98baf7..fd4d29a 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -35,11 +35,13 @@ jobs: run: echo "BUILD_TS=$(date +%Y%m%dT%H%M%S)" >> $GITHUB_ENV - name: Build & push ${{ matrix.backend }} + # switch into toolboxes/ so that Dockerfile.* and gguf-vram-estimator.py are in context + working-directory: toolboxes run: | set -euo pipefail BACKEND="${{ matrix.backend }}" - DF="toolboxes/Dockerfile.${BACKEND}" + DF="Dockerfile.${BACKEND}" LOCAL_IMAGE="${LOCAL_PREFIX}-${BACKEND}" BUILD_TAG="${BACKEND}_${BUILD_TS}" IMMUTABLE_REF="${DOCKERHUB_REPO}:${BUILD_TAG}"