Skip to content

Instantly share code, notes, and snippets.

@cortinico
Created July 29, 2020 07:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cortinico/cb379bdf3cea8e843a1feb00a806496a to your computer and use it in GitHub Desktop.
Save cortinico/cb379bdf3cea8e843a1feb00a806496a to your computer and use it in GitHub Desktop.
The simplest workflow to build your Android App on Github Actions
name: Build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Build the app
run: ./gradlew build
@Prabha10cs
Copy link

how to build app bundle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment