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