fix: remove --progress=plain from plain docker build (buildx-only flag)

This commit is contained in:
Hermes
2026-05-02 18:29:33 -07:00
parent 91772c117e
commit c6aae208d1

View File

@@ -197,7 +197,6 @@ runs:
$(for t in $(echo ${{ steps.meta.outputs.tags }} | tr ',' ' '); do echo -n "--tag ${{ inputs.image-name }}:$t "; done) \
--file ${{ inputs.context }}/${{ inputs.dockerfile }} \
$BUILD_ARGS_FLAG \
--progress=plain \
${{ inputs.context }}
docker push "${{ inputs.image-name }}:${{ steps.meta.outputs.tag }}"
docker push "${{ inputs.image-name }}:latest"
@@ -209,7 +208,6 @@ runs:
$(for t in $(echo ${{ steps.meta.outputs.tags }} | tr ',' ' '); do echo -n "--tag ${{ inputs.image-name }}:$t "; done) \
--file ${{ inputs.context }}/${{ inputs.dockerfile }} \
$BUILD_ARGS_FLAG \
--progress=plain \
${{ inputs.context }}
fi
fi