Skip to content

Commit

Permalink
updated android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsmanmeet committed Dec 1, 2023
1 parent a4b8e6f commit 0597de7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit 0597de7

Please sign in to comment.