aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: e2414018296663f718dda934ce81eb68260c14fd (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
33
name: Build

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  Build:
    runs-on: ubuntu-latest

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

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

    - name: Grant Execute Permission for gradlew
      run: chmod +x gradlew

    - name: Build with Gradle
      run: ./gradlew build -x lint

    - name: Upload apk
      uses: actions/upload-artifact@v2
      with:
        name: Infinity-${{github.sha}}
        path: app/build/outputs/apk/
        if-no-files-found: error
ingViewModel.java?id=8bc25e4b87a264c778099d9f514ad2d7478776fb&follow=1'>Initialize LiveData data by using the constructor, not the postValue method.Docile-Alligator9-37/+21 2023-10-04Set filled card view background color in MaterialYouUtils.Docile-Alligator1-0/+3 2023-10-04Sync subscriptions once every 24 hours.Docile-Alligator2-1/+9 2023-10-01Version 6.3.0-beta2.Docile-Alligator1-2/+2 2023-10-01Fix changing playback speed not working in ViewImgurVideoFragment and ViewRed...Docile-Alligator3-22/+41 2023-10-01Fix video controller ui issues in ViewImgurVideoFragment, ViewRedditGalleryVi...Docile-Alligator3-16/+14 2023-10-01Fix video controller ui issues in ViewImgurVideoFragment, ViewRedditGalleryVi...Docile-Alligator3-22/+30 2023-09-25Version 6.3.0-beta1.Docile-Alligator1-2/+2 2023-09-25Version 6.3.0-beta1. Rename RedditAPIInfoBottomSheetFragment to ImportantInfo...Docile-Alligator3-9/+9 2023-09-23Changed video control UI.Docile-Alligator1-3/+3 2023-09-23Changed video control UI.Docile-Alligator5-48/+69 2023-09-22Start changing video control UI.Docile-Alligator16-108/+193