Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/android_beta_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
1 change: 1 addition & 0 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading