ci: replace email for one that posts directly to slack (#2930)

cyan committed Feb 20, 2026 at 15:51 UTC 5f0a6f596011da885b7878d1110a82f8f43b4779
1 file changed +12
.github/workflows/reusable-build.yml
+12
@@ -197,6 +197,18 @@ jobs:
197
198 echo -e "id=com.cakewallet.test_${sanitized_branch_name}\nname=${BRANCH_NAME}" > android/app.properties
199
200 + - name: Replace email address
201 + run: |
202 + PATTERN1="support@cakewallet.com"
203 + PATTERN1REP="dev.testflight.cakewallet@mrcyjanek.net"
204 + echo lib/utils/exception_handler.dart \
205 + lib/view_model/support_view_model.dart \
206 + | while IFS= read -r -d '' file; do
207 + sed -i.bak \
208 + -e "s|$PATTERN1|$PATTERN1REP|g" \
209 + "$file"
210 + done
211 +
212 - name: Build
213 run: |
214 export ANDROID_NDK_HOME="$ANDROID_SDK_ROOT/ndk/$ANDROID_NDK_VERSION"