File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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
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'
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 }}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments