aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 3756e754fd54e8d2a08678383d617850a5cc9872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Build

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  Build:
    runs-on: ubuntu-latest

    steps:
    - name: Checkout Repository
      uses: actions/checkout@v3

    - name: Set-up JDK 11
      uses: actions/setup-java@v3
      with:
        java-version: '11'
        distribution: 'temurin'

    - name: Setup and build with Gradle
      uses: gradle/gradle-build-action@v2
      with:
        arguments: build -x lint

    - name: Upload apk
      uses: actions/upload-artifact@v3
      with:
        name: Infinity-${{github.sha}}
        path: app/build/outputs/apk/
        if-no-files-found: error