Try to identify dSYMs by UUID not channel (#28268)

This should make it possible to more reliably symbolicate crash reports
from nightly, and from users with pending auto-updates.


Release Notes:

- N/A

---------

Co-authored-by: Ben Kunkle <ben.kunkle@gmail.com>
This commit is contained in:
Conrad Irwin 2025-04-07 16:08:38 -06:00 committed by GitHub
parent 862d0c07ca
commit f03efeda73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 7 deletions

View file

@ -24,10 +24,10 @@ function upload_to_blob_store_with_acl
function upload_to_blob_store_public
{
upload_to_blob_store_with_acl $1 $2 $3 "x-amz-acl:public-read"
upload_to_blob_store_with_acl "$1" "$2" "$3" "x-amz-acl:public-read"
}
function upload_to_blob_store
{
upload_to_blob_store_with_acl $1 $2 $3 "x-amz-acl:private"
upload_to_blob_store_with_acl "$1" "$2" "$3" "x-amz-acl:private"
}