From 1d72a43320e53cd0a0b1e8f9a451ffe5ffff308d Mon Sep 17 00:00:00 2001 From: paregi12 Date: Sun, 18 Jan 2026 11:56:22 +0530 Subject: [PATCH] Delete .github/workflows/android-debug.yml --- .github/workflows/android-debug.yml | 45 ----------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/android-debug.yml diff --git a/.github/workflows/android-debug.yml b/.github/workflows/android-debug.yml deleted file mode 100644 index 28c88c4b..00000000 --- a/.github/workflows/android-debug.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Build Android Debug - -on: - push: - branches: [ "main", "Build", "Mal" ] - workflow_dispatch: - -jobs: - build: - name: Build Debug APK - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - cache: gradle - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - - - name: Install dependencies - run: npm ci --legacy-peer-deps - - - name: Grant execute permission for gradlew - run: chmod +x android/gradlew - - - name: Build Debug APK - working-directory: android - # assembleDebug automatically uses a standard android debug key - run: ./gradlew :app:assembleDebug - - - name: Upload Debug APK - uses: actions/upload-artifact@v4 - with: - name: app-debug - path: android/app/build/outputs/apk/debug/*.apk