Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsmanmeet committed Dec 11, 2023
2 parents a506669 + 55ba7cd commit add4a2b
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 add4a2b

Please sign in to comment.