Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammedKpln committed Feb 13, 2024
1 parent 65f7fa0 commit a2dfa61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/realease-android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: cd android && bundle install && cd ..

- name: Execute Fastlane command
run: cd android && fastlane beta
run: cd android && fastlane debug
env:
KEYSTORE_PATH: ${{ steps.android_keystore.outputs.filePath }}
KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }}
Expand All @@ -77,5 +77,5 @@ jobs:
- name: Upload generated and signed APK as artifact to Github
uses: actions/upload-artifact@v4
with:
name: app-release
path: android/app/build/outputs/apk/release/app-release.apk
name: app-debug
path: android/app/build/outputs/apk/debug/app-debug.apk
5 changes: 5 additions & 0 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ platform :android do
sh "cd ../../ && npx cap sync android"
gradle(task: "assembleRelease")
end
lane :debug do
yarn(command: 'build', step_name: 'building_project', package_path: "../package.json")
sh "cd ../../ && npx cap sync android"
gradle(task: "assembleDebug")
end

desc "Deploy a new version to the Google Play"
lane :deploy do
Expand Down

0 comments on commit a2dfa61

Please sign in to comment.