From 6d34e4b1d6fab14699e88ca631fa1885a1eceada Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 7 Mar 2021 15:13:46 +0200 Subject: [PATCH] Add Sentry DNS --- .github/workflows/build.yml | 1 - lib/.env.dart.example | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14a88959a..65c8f357b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,6 @@ jobs: cp lib/.env.dart.example lib/.env.dart cp android/app/build.gradle.prod android/app/build.gradle sed -i 's/secret/${{secrets.api_secret}}/g' lib/.env.dart - sed -i 's/dns/${{secrets.app_sentry}}/g' lib/.env.dart - run: | echo "const FLUTTER_VERSION = const " > lib/flutter_version.dart flutter --version --machine >> lib/flutter_version.dart diff --git a/lib/.env.dart.example b/lib/.env.dart.example index f3d1dd34a..1cda31453 100644 --- a/lib/.env.dart.example +++ b/lib/.env.dart.example @@ -1,6 +1,6 @@ class Config { static const String API_SECRET = 'secret'; - static const String SENTRY_DNS = 'dns'; + static const String SENTRY_DNS = 'https://634363c8dd6048b8ae89ab6c66dd9c24@sentry.invoicing.co/7'; static const bool DEMO_MODE = false;