diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index 6ce1638a3..e7725ca78 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -183,10 +183,10 @@ class TaskBuilder(object): 'tier': 1, }, scopes=[ - 'secrets:get:project/mobile/fenix/pr' + 'secrets:get:project/mobile/fenix/public-tokens' ] ) - + def craft_ui_tests_task(self): artifacts = { "public": { @@ -226,7 +226,7 @@ class TaskBuilder(object): artifacts=artifacts, env_vars=env_vars, ) - + def craft_upload_apk_nimbledroid_task(self, assemble_task_id): # For GeckoView, upload nightly (it has release config) by default, all Release builds have WV return self._craft_build_ish_task( diff --git a/automation/taskcluster/upload_coverage_report.sh b/automation/taskcluster/upload_coverage_report.sh index 137b1fa6b..7e9cabd4c 100755 --- a/automation/taskcluster/upload_coverage_report.sh +++ b/automation/taskcluster/upload_coverage_report.sh @@ -7,7 +7,7 @@ set -ex # Get token for uploading to codecov and append it to codecov.yml python automation/taskcluster/helper/get-secret.py \ - -s project/mobile/fenix/pr \ + -s project/mobile/fenix/public-tokens \ -k codecov \ -f .cc_token \