From b0769a37deee8529b893b2767a1e3493c1035342 Mon Sep 17 00:00:00 2001 From: seepine Date: Sat, 22 Mar 2025 16:14:41 +0800 Subject: [PATCH] fix: add build args --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) 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: |