Automating Android APK & AAB Generation with GitHub Actions | by Abhishek Pathak | Mar, 2025
name: Generated APK AAB (Upload – Create Artifact To Github Action) env:# The name of the main module repositorymain_project_module: app # The name of the Play Storeplaystore_name: testing_store on: push:branches:– ‘master/**’ # Allows you to run this workflow manually from the Actions tabworkflow_dispatch: jobs:build: runs-on: ubuntu-latest steps:– uses: actions/checkout@v4 # Set Current Date As Env … Read more