From 8ee36dc61715b4262b57fd0cd829ec40e79641df Mon Sep 17 00:00:00 2001 From: AndReicscs Date: Tue, 16 Jun 2026 08:56:22 +0000 Subject: [PATCH] fix workflow --- .gitea/workflows/publish-sensor-registry.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/publish-sensor-registry.yml b/.gitea/workflows/publish-sensor-registry.yml index 4728a73..519ed0d 100644 --- a/.gitea/workflows/publish-sensor-registry.yml +++ b/.gitea/workflows/publish-sensor-registry.yml @@ -134,7 +134,7 @@ jobs: IMAGE_TAG="$IMAGE_REPO:v$VERSION" echo "🐳 Building Docker Image: $IMAGE_TAG in $SENSOR_DIR..." - docker build -t "$IMAGE_TAG" "$SENSOR_DIR" + docker build -t "$IMAGE_TAG" -f "$SENSOR_DIR/Dockerfile" . echo "🐳 Pushing Docker Image: $IMAGE_TAG" docker push "$IMAGE_TAG" || echo "⚠️ Warning: Push failed! Ensure your CI runner is authenticated to the registry."