diff --git a/action.yml b/action.yml
index c20783f..af4e6e3 100644
--- a/action.yml
+++ b/action.yml
@@ -36,6 +36,9 @@ inputs:
     description: "Push is a shorthand for --output=type=registry"
     required: false
     default: 'true'
+  build-args:
+    description: "Docker build args"
+    required: false
 
 runs:
   using: 'composite'
@@ -140,6 +143,7 @@ runs:
         push: ${{ inputs.push }}
         tags: ${{ steps.meta.outputs.TAGS }}
         labels: ${{ inputs.labels }}
+        build-args: ${{ inputs.build-args }}
         cache-from: type=local,src=/opt/docker-cache/.build-cache
         cache-to: type=local,dest=/opt/docker-cache/.build-cache,mode=max
         build-args: |