From 0bc5ce5d00bb6a1af3ed390de547c401562c0715 Mon Sep 17 00:00:00 2001 From: devthejo Date: Fri, 1 Dec 2023 19:53:58 +0100 Subject: [PATCH] fix: target_args --- buildkit/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/buildkit/action.yml b/buildkit/action.yml index ad87ce3..a3e9daa 100644 --- a/buildkit/action.yml +++ b/buildkit/action.yml @@ -87,6 +87,11 @@ runs: echo "{\"auths\":{\"${{ inputs.registry }}\":{\"username\":\"${{ inputs.registry-username }}\",\"password\":\"${{ inputs.registry-password }}\"}}}" > $DOCKER_CONFIG/config.json fi + target_args = "" + if [ -n "${{ inputs.target }}" ]; then + target_args = "--target=${{ inputs.target }}" + fi + # build and push using buildkit buildctl \ --addr ${{ inputs.buildkit-daemon-address }} \ @@ -101,6 +106,6 @@ runs: $(echo "${{ inputs.build-args }}" | sed -r '/^\s*$/d' - | sed -r 's/(.*)/--opt build-arg:\1 \\/' -) \ $(echo "${{ inputs.labels }}" | sed -r '/^\s*$/d' - | sed -r 's/(.*)/--opt label:\1 \\/' -) \ "${secret_args[@]}" \ - --target=${{ inputs.target }} \ + "${target_args}" \ --opt filename=./${{ inputs.dockerfile }} \ --output type=image,\"name=$(echo "${{ inputs.tags }}" | paste -sd ',' -)\",push=${{ inputs.push }}