mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 11:17:25 +01:00
addd6705ed
* Update CodeQL to v2 v1 is deprecated, see https://github.blog/changelog/2022-04-27-code-scanning-deprecation-of-codeql-action-v1/ * Use gradle action for build * Update checkout to v3 * Update setup-java to v3 * Update upload-artifact to v3 * Setup Dependabot to update GitHub actions
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 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
|