Disabling material-icons-extended:lintRelease

Recently ( aosp/1692445 )  migrated the build server commands to run lintRelease rather than lintDebug but missed this one

Bug: 186569865
Bug: 175401659
Test: Treehugger runs busytown/*.sh
Change-Id: I0fb9094c222e3c0ad1640242cfa69d493d9e7c68
diff --git a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt
index 9e8aea3..c4c0a5a 100644
--- a/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt
+++ b/compose/material/material/icons/generator/src/main/kotlin/androidx/compose/material/icons/generator/tasks/IconGenerationTask.kt
@@ -169,10 +169,10 @@
             // b/175401659 - disable lint as it takes a long time, and most errors should
             // be caught by lint on material-icons-core anyway
             project.afterEvaluate {
-                project.tasks.named("lintAnalyzeDebug") { t ->
+                project.tasks.named("lintAnalyzeRelease") { t ->
                     t.enabled = false
                 }
-                project.tasks.named("lintDebug") { t ->
+                project.tasks.named("lintRelease") { t ->
                     t.enabled = false
                 }
             }