Files
TichuCounter/.gitea/workflows/buildAndroid.yaml
Fabian Zobrist db586576ec
Some checks failed
Build Android / build (push) Failing after 10m21s
Update .gitea/workflows/buildAndroid.yaml
2023-06-25 13:40:41 +02:00

16 lines
385 B
YAML

name: Build Android
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Build the app
run: ./gradlew build