From ed71ed2dfa4a226d6a9620e63980c838abf66d36 Mon Sep 17 00:00:00 2001 From: chiteroman <98092901+chiteroman@users.noreply.github.com> Date: Tue, 5 Dec 2023 13:19:12 +0100 Subject: [PATCH] Fix workflows --- .github/workflows/android.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index c218eab..1ea04b2 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -12,25 +12,26 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Check out + uses: actions/checkout@v4 + with: + submodules: "recursive" + fetch-depth: 0 + - name: set up JDK 17 uses: actions/setup-java@v3 with: - java-version: '17' distribution: 'temurin' - cache: gradle + java-version: '17' - name: Grant execute permission for gradlew run: chmod +x gradlew + - name: Build with Gradle run: ./gradlew assembleRelease - - name: Create PlayIntegrityFix zip + + - name: Upload PlayIntegrityFix.zip uses: actions/upload-artifact@v3 with: name: PlayIntegrityFix - path: out/PlayIntegrityFix.zip - - name: Create PlayIntegrityFix-resetprop zip - uses: actions/upload-artifact@v3 - with: - name: PlayIntegrityFix-resetprop - path: out/PlayIntegrityFix-resetprop.zip + path: module/* \ No newline at end of file