From b03a6eecc4368413ef95cc2a8e5fbf67ed88d105 Mon Sep 17 00:00:00 2001 From: ange Date: Thu, 20 Feb 2025 14:07:51 +0000 Subject: [PATCH] feat: build-stealth --- .gitea/workflows/apk.yaml | 17 +++++++++++++++++ dialer/stealth_local_run.sh | 3 ++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/apk.yaml b/.gitea/workflows/apk.yaml index db63776..90e3e10 100644 --- a/.gitea/workflows/apk.yaml +++ b/.gitea/workflows/apk.yaml @@ -15,3 +15,20 @@ jobs: with: name: icing-dialer-${{ gitea.ref_name }}-${{ gitea.run_id }}.apk path: build/app/outputs/flutter-apk/app-release.apk + + build-stealth: + runs-on: debian + steps: + - uses: actions/checkout@v1 + with: + subpath: dialer/ + - uses: icing/flutter@main + with: + args: + - build + - apk + - --dart-define=STEALTH=true + - uses: actions/upload-artifact@v1 + with: + name: icing-dialer-stealth-${{ gitea.ref_name }}-${{ gitea.run_id }}.apk + path: build/app/outputs/flutter-apk/app-release.apk diff --git a/dialer/stealth_local_run.sh b/dialer/stealth_local_run.sh index 95cc270..ae202a9 100755 --- a/dialer/stealth_local_run.sh +++ b/dialer/stealth_local_run.sh @@ -1,3 +1,4 @@ #!/usr/bin/env bash + echo "Running Icing Dialer in STEALTH mode..." -flutter run --dart-define=STEALTH=true \ No newline at end of file +flutter run --dart-define=STEALTH=true