diff --git a/.github/workflows/android_beta_build.yml b/.github/workflows/android_beta_build.yml index 00759c92..6e6d0c4b 100644 --- a/.github/workflows/android_beta_build.yml +++ b/.github/workflows/android_beta_build.yml @@ -3,6 +3,11 @@ name: Sentry Android Build Distribution on: push: branches: [main] + pull_request: + branches: [main] + paths: + - android/** + - .github/workflows/android_beta_build.yml jobs: build: diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index cfc35651..f3de667d 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -111,6 +111,7 @@ sentry { distribution { enabled = providers.environmentVariable("GITHUB_ACTIONS").isPresent updateSdkVariants.add("beta") + installGroups.set(setOf("test-grp1", "test-grp2", "test-grp3", "test-grp4", "test-this-is-a-very-long-group-name-much-longer-than-one-would-reasonably-expect-to-exist")) } snapshots { diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index cc42eb28..80b78f9e 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -275,6 +275,7 @@ platform :ios do org_slug: 'sentry', project_slug: 'hackernews-ios', build_configuration: 'AdHoc', + install_groups: ['test-tag1', 'test-tag2', 'test-tag3'], log_level: 'debug' ) end