1
0
Fork 0

Fixes #935. Leanplum usage.

master
Mihai Tabara 2019-03-11 10:25:38 +00:00 committed by Sebastian Kaspari
parent 49142349b8
commit d334decbe5
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ def generate_build_task(apks, is_staging):
' && python automation/taskcluster/helper/get-secret.py'
' -s {} -k dsn -f .sentry_token'.format(sentry_secret) +
' && python automation/taskcluster/helper/get-secret.py'
' -s {} -k production -f .leanplum_token'.format(leanplum_token) +
' -s {} -k production -f .leanplum_token'.format(leanplum_secret) +
' && ./gradlew --no-daemon -PcrashReports=true clean test assembleRelease'),
features={
"chainOfTrust": True,
@ -63,7 +63,7 @@ def generate_build_task(apks, is_staging):
},
artifacts=artifacts,
scopes=[
"secrets:get:{}".format(sentry_secret)
"secrets:get:{}".format(sentry_secret),
"secrets:get:{}".format(leanplum_secret)
]
)