Skip to content

Add my own build workflow #1

Add my own build workflow

Add my own build workflow #1

Workflow file for this run

name: Java Ci
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
submodules: true
- name: Set up JDK 18
uses: actions/setup-java@main
with:
java-version: 22
distribution: temurin
- name: Assemble APK
run: ./gradlew --no-daemon assembleDebug