Skip to content

Create main.yml

Create main.yml #1

Workflow file for this run

name: Android CI
on:
push:
branches: [feature/ci_cd]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Java JDK
uses: actions/[email protected]
with:
distribution: oracle
java-version: 17
- name: Build with Gradle
run: ./gradlew build
- name: Upload APK
uses: actions/[email protected]
with:
name: app
path: app/build/outputs/apk/debug/app-debug.apk