X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=.github%2Fworkflows%2Fandroid.yml;h=6621b01f58debfe0aa815b1917743a74d7c7495a;hb=533a7e5290163854e2af1f6f54b835d6fe766108;hp=e519f16f82d0fe5a1e47508a47554d29b9c021df;hpb=594f4178e83bea7fc0327934e0b3b8ad9723e810;p=cavedroid.git diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index e519f16..6621b01 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -13,14 +13,16 @@ jobs: steps: - uses: actions/checkout@v3 - - name: set up JDK 11 + - name: set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'temurin' cache: gradle + - name: mock keystore.properties + run: echo "releaseKeystorePath=mock" > keystore.properties - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build with Gradle - run: ./gradlew build + run: ./gradlew android:buildDebug