From e338505631dd79c38b8591a27146b5a51aaa3dbc Mon Sep 17 00:00:00 2001 From: Yimura <24669514+Yimura@users.noreply.github.com> Date: Sun, 15 Sep 2024 22:50:35 +0200 Subject: [PATCH] fix(CI): no execute rights on gradlew --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49b9411..8f48493 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,10 @@ jobs: echo $ENCODED_STRING > keystore-b64.txt base64 -d keystore-b64.txt > keystore.jks + - name: Ensure gradlew execute flags + run: | + chmod +x ./gradlew + - name: Build Release apk env: RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}