mirror of
https://github.com/Docile-Alligator/Infinity-For-Reddit.git
synced 2026-02-05 13:05:33 +00:00
33 lines
625 B
YAML
33 lines
625 B
YAML
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 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
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@v4
|
|
with:
|
|
name: Infinity-${{github.sha}}
|
|
path: app/build/outputs/apk/
|
|
if-no-files-found: error
|