diff --git a/docs/howto/release.md b/docs/howto/release.md index a3221433926..5a185d4b1c6 100644 --- a/docs/howto/release.md +++ b/docs/howto/release.md @@ -102,9 +102,12 @@ simple terminology for the process we follow with both. tools/checkout-keystore ``` -* Do *not* apply the Sentry client key from the `release-secrets` - branch; if you're already on that branch (from e.g. making the iOS - build), move off of it. See our issues #5757 and #5766. +* Apply the Sentry client key (using the local branch created for this + in initial setup): + + ``` + git rebase @ release-secrets + ``` * Build the app, as both good old-fashioned APKs and a fancy new AAB: diff --git a/tools/android b/tools/android index cdc2665d296..c8791a38b60 100755 --- a/tools/android +++ b/tools/android @@ -64,16 +64,14 @@ do_apk() { check_yarn_link run_visibly yarn - # TODO(#5766): start passing -Psentry again - run_visibly tools/gradle :app:assembleRelease -Psigned + run_visibly tools/gradle :app:assembleRelease -Psigned -Psentry } do_aab() { check_yarn_link run_visibly yarn - # TODO(#5766): start passing -Psentry again - run_visibly tools/gradle :app:bundleRelease -Psigned + run_visibly tools/gradle :app:bundleRelease -Psigned -Psentry } case "${action}" in