From eed094e00c28c2df6773fc07a425105ddf12b9b6 Mon Sep 17 00:00:00 2001 From: Samuel Deuter <43389660+dudeuter@users.noreply.github.com> Date: Wed, 24 Feb 2021 18:11:34 -0800 Subject: [PATCH] make name of API key consistent with documentation (#1401) --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 932db5677..cacc534fa 100644 --- a/build.gradle +++ b/build.gradle @@ -39,7 +39,7 @@ allprojects { } credentials { username = "mapbox" - password = System.getenv("SDK_REGISTRY_TOKEN") ?: project.property("SDK_REGISTRY_TOKEN") as String + password = System.getenv("MAPBOX_DOWNLOADS_TOKEN") ?: project.property("MAPBOX_DOWNLOADS_TOKEN") as String } } }