From 8cd5b2c7441a61aa6d6f951ffba1006168669c4a Mon Sep 17 00:00:00 2001 From: Lukasz Jagiela Date: Wed, 30 Oct 2024 20:00:27 +0100 Subject: [PATCH] ci: add missing SENTRY_DSN for release workflow --- .github/actions/build/app/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/build/app/action.yml b/.github/actions/build/app/action.yml index c9c8b3fd2f..0d2d3340d5 100644 --- a/.github/actions/build/app/action.yml +++ b/.github/actions/build/app/action.yml @@ -27,6 +27,11 @@ inputs: description: 'Banxa`s integration URL' required: false default: 'https://lacewallet.banxa-sandbox.com/' + SENTRY_DSN: + description: 'Data Source Name for Sentry, AKA Client Key. This tells a Sentry SDK where to send events so the events are associated + with the correct project' + required: false + default: '' runs: using: 'composite' @@ -47,6 +52,7 @@ runs: POSTHOG_PRODUCTION_TOKEN: ${{ inputs.POSTHOG_PRODUCTION_TOKEN }} PRODUCTION_MODE_TRACKING: ${{ inputs.PRODUCTION_MODE_TRACKING }} BANXA_LACE_URL: ${{ inputs.BANXA_LACE_URL }} + SENTRY_DSN: ${{ inputs.SENTRY_DSN }} - name: Upload artifact uses: actions/upload-artifact@v4