NGworkflow.yml

This commit is contained in:
mad1mystic 2023-03-28 19:16:46 +05:30 committed by GitHub
parent a7df113538
commit 7aca6a404b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

26
.github/workflows/NGworkflow.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Build Android App
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Build the app
run: ./gradlew assembleDebug