From c6aae208d1f3fd36dac170c1125ff1b8b64275aa Mon Sep 17 00:00:00 2001 From: Hermes Date: Sat, 2 May 2026 18:29:33 -0700 Subject: [PATCH] fix: remove --progress=plain from plain docker build (buildx-only flag) --- .gitea/actions/docker-build/action.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/actions/docker-build/action.yml b/.gitea/actions/docker-build/action.yml index 4eae815..1f5cfb3 100644 --- a/.gitea/actions/docker-build/action.yml +++ b/.gitea/actions/docker-build/action.yml @@ -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