Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsmanmeet authored Dec 1, 2023
1 parent 0597de7 commit 55ba7cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ jobs:
# Create APK Debug
- name: Build apk debug project (APK)
run: ./gradlew assembleDebug
# Noted For Output [main_project_module]/build/outputs/apk/debug/
# Create an artifacts folder if it doesn't exist, and move APK into it
- name: Move APK to artifacts folder
run: |
mkdir -p ${{ github.workspace }}/artifacts/
mv ${{ env.main_project_module }}/build/outputs/apk/debug/* ${{ github.workspace }}/artifacts/
- 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/
path: ${{ github.workspace }}/artifacts/

0 comments on commit 55ba7cd

Please sign in to comment.