From 0597de7057582190a7dd61abb60a4339187ac785 Mon Sep 17 00:00:00 2001 From: thatsmanmeet <120583077+thatsmanmeet@users.noreply.github.com> Date: Fri, 1 Dec 2023 11:36:46 +0530 Subject: [PATCH] updated android.yml --- .github/workflows/android.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 6538bfe..d23fdf9 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -24,9 +24,12 @@ jobs: run: chmod +x gradlew - name: Build with Gradle run: ./gradlew build - - name: Build Debug APK + # Create APK Debug + - name: Build apk debug project (APK) run: ./gradlew assembleDebug - - name: Create APK directory - run: mkdir -p apk - - name: Copy APK to directory - run: cp app/build/outputs/apk/debug/*.apk apk/ + # Noted For Output [main_project_module]/build/outputs/apk/debug/ + - name: Upload APK Debug - ${{ env.repository_name }} + uses: actions/upload-artifact@v3 + with: + name: Tasky_debug + path: ${{ env.main_project_module }}/build/outputs/apk/debug/ \ No newline at end of file