diff --git a/content/build/ci/github-actions/build-summary.md b/content/build/ci/github-actions/build-summary.md index b5ae4ad57f..79823bfb3d 100644 --- a/content/build/ci/github-actions/build-summary.md +++ b/content/build/ci/github-actions/build-summary.md @@ -66,15 +66,15 @@ select the item in the list. ## Disable job summary -To disable job summaries, set the `DOCKER_BUILD_NO_SUMMARY` environment -variable in the YAML configuration for your build step: +To disable job summaries, set the `DOCKER_BUILD_SUMMARY` environment variable +in the YAML configuration for your build step: ```yaml {hl_lines=5} - name: Build uses: docker/docker-build-push-action@v6 env: - DOCKER_BUILD_NO_SUMMARY: true + DOCKER_BUILD_SUMMARY: false with: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}