Skip to content

Commit 47baedf

Browse files
committed
Change sentry to self-hosted
1 parent c7a2654 commit 47baedf

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/actions/build_android/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ runs:
5757
SENTRY_ORG: ${{ inputs.sentry-org }}
5858
SENTRY_PROJECT: ${{ inputs.sentry-project }}
5959
SENTRY_DSN: ${{ inputs.sentry-dsn }}
60-
#SENTRY_URL: ${{ inputs.sentry-url }}
60+
SENTRY_URL: ${{ inputs.sentry-url }}
6161
- name: Build AppBundle
6262
if: inputs.build-mode == 'bundle'
6363
shell: bash
@@ -69,8 +69,7 @@ runs:
6969
SENTRY_ORG: ${{ inputs.sentry-org }}
7070
SENTRY_PROJECT: ${{ inputs.sentry-project }}
7171
SENTRY_DSN: ${{ inputs.sentry-dsn }}
72-
73-
#SENTRY_URL: ${{ inputs.sentry-url }}
72+
SENTRY_URL: ${{ inputs.sentry-url }}
7473
- name: list dependencies
7574
shell: bash
7675
run: cd android && ./gradlew app:dependencies --configuration releaseCompileClasspath

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
sentry-project: ${{ secrets.SENTRY_PROJECT }}
5252
sentry-dsn: ${{ secrets.SENTRY_DSN }}
5353
build-mode: ${{ matrix.build }}
54-
#sentry-url: ${{ secrets.SENTRY_URL }}
54+
sentry-url: ${{ secrets.SENTRY_URL }}
5555
- name: Build IOS / Upload Beta
5656
if: github.event_name == 'push' && matrix.build != 'apk'
5757
run: bash ${GITHUB_WORKSPACE}/Scripts/fastlane.sh
@@ -68,7 +68,7 @@ jobs:
6868
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
6969
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
7070
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
71-
#SENTRY_URL: ${{ secrets.SENTRY_URL }}
71+
SENTRY_URL: ${{ secrets.SENTRY_URL }}
7272
- name: Upload Dart/Flutter debug symbols
7373
run: dart pub global activate sentry_dart_plugin && dart pub global run sentry_dart_plugin
7474
if: github.event_name == 'push'
@@ -77,6 +77,6 @@ jobs:
7777
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
7878
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
7979
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
80-
#SENTRY_URL: ${{ secrets.SENTRY_URL }}
80+
SENTRY_URL: ${{ secrets.SENTRY_URL }}
8181
SENTRY_RELEASE: ${{ steps.version.outputs.version }}
8282
SENTRY_DIST: ${{ steps.version.outputs.build-number }}

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ sentry {
135135

136136
// The url of your Sentry instance. If you're using SAAS (not self hosting) you do not have to
137137
// set this. If you are self hosting you can set your URL here
138-
//url = System.getenv("SENTRY_URL")
138+
url = System.getenv("SENTRY_URL")
139139

140140
// Disables or enables the handling of Proguard mapping for Sentry.
141141
// If enabled the plugin will generate a UUID and will take care of

ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ platform :ios do
3838
auth_token: ENV['SENTRY_AUTH_TOKEN'],
3939
org_slug: ENV['SENTRY_ORG'],
4040
project_slug: ENV['SENTRY_PROJECT'],
41-
#url: ENV['SENTRY_URL'],
41+
url: ENV['SENTRY_URL'],
4242
include_sources: true, # Optional. For source context.
4343
)
4444
end

0 commit comments

Comments
 (0)