diff --git a/dist/index.js b/dist/index.js
index 669bedb..94cabd9 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1213,7 +1213,7 @@ function mustBuildx(inputs) {
     return __awaiter(this, void 0, void 0, function* () {
         return (inputs.builder.length > 0 ||
             inputs.platforms.length > 0 ||
-            inputs.push ||
+            inputs.load ||
             inputs.outputs.length > 0 ||
             inputs.cacheFrom.length > 0 ||
             inputs.cacheTo.length > 0);
diff --git a/src/context-helper.ts b/src/context-helper.ts
index 4548ff5..5ae0b8c 100644
--- a/src/context-helper.ts
+++ b/src/context-helper.ts
@@ -42,7 +42,7 @@ export async function mustBuildx(inputs: Inputs): Promise<boolean> {
   return (
     inputs.builder.length > 0 ||
     inputs.platforms.length > 0 ||
-    inputs.push ||
+    inputs.load ||
     inputs.outputs.length > 0 ||
     inputs.cacheFrom.length > 0 ||
     inputs.cacheTo.length > 0