Skip to content

Commit

Permalink
chore: update sentry dsn
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-is-cute committed Feb 13, 2024
1 parent fb92b35 commit dc5c686
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,19 @@ jobs:
run: |
echo "HS_VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
# - name: Publish Sentry release
# uses: getsentry/action-release@v1
# env:
# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_RELEASE_AUTH_TOKEN }}
# SENTRY_ORG: heliosphere
# SENTRY_PROJECT: plugin
# SENTRY_URL: https://sentry.heliosphere.app/
# with:
# environment: production
# set_commits: auto
# version: ${{ env.HS_VERSION }}
# version_prefix: 'plugin@'
- name: Publish Sentry release
uses: getsentry/action-release@v1
continue-on-error: true
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: heliosphere
SENTRY_PROJECT: plugin
SENTRY_URL: https://sentry.heliosphere.app
with:
environment: production
set_commits: auto
version: ${{ env.HS_VERSION }}
version_prefix: 'plugin@'

- name: Deploy
env:
Expand Down
2 changes: 1 addition & 1 deletion Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Plugin() {
PluginInterface = this.Interface!;

this.Sentry = SentrySdk.Init(o => {
o.Dsn = "https://540decab4a5941f1ba826cd50b4b6efd@sentry.heliosphere.app/4";
o.Dsn = "https://f0b33e3640b17f36b2a22099a1249efe@sentry.heliosphere.app/4";
o.EnableTracing = true;
o.TracesSampleRate = 0.15f;
Expand Down
2 changes: 1 addition & 1 deletion heliosphere-plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SentryOrg>heliosphere</SentryOrg>
<SentryProject>plugin</SentryProject>
<SentryUrl>https://sentry.heliosphere.app/</SentryUrl>
<SentryUrl>https://sentry.heliosphere.app</SentryUrl>
<SentryUploadSymbols>true</SentryUploadSymbols>
<SentryUploadSources>true</SentryUploadSources>
</PropertyGroup>
Expand Down

0 comments on commit dc5c686

Please sign in to comment.