2021-07-12 23:36:00 +02:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: actions/checkout@v3
|
2021-07-12 23:36:00 +02:00
|
|
|
|
2021-09-25 03:28:42 +02:00
|
|
|
- name: Set-up JDK 11
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: actions/setup-java@v3
|
2021-07-12 23:36:00 +02:00
|
|
|
with:
|
2021-09-25 03:28:42 +02:00
|
|
|
java-version: '11'
|
|
|
|
distribution: 'temurin'
|
2021-07-12 23:36:00 +02:00
|
|
|
|
2022-09-09 07:40:51 +02:00
|
|
|
- name: Setup and build with Gradle
|
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
|
|
|
arguments: build -x lint
|
2021-07-12 23:36:00 +02:00
|
|
|
|
|
|
|
- name: Upload apk
|
2022-09-09 07:40:51 +02:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-07-12 23:36:00 +02:00
|
|
|
with:
|
|
|
|
name: Infinity-${{github.sha}}
|
|
|
|
path: app/build/outputs/apk/
|
|
|
|
if-no-files-found: error
|