From 30640b57f2ba40d48286990dabeb2615f86292ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=9F=8F=E8=87=A3?= Date: Mon, 4 Nov 2019 10:46:50 +0800 Subject: [PATCH] Gradle: Granting execute permission for gradlew `./gradlew` build fails because it does not have execute permissions. Adding the execute permissions using chmod fixes this issue. See https://github.com/actions/starter-workflows/pull/70 --- ci/gradle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/gradle.yml b/ci/gradle.yml index 8e4dc5e..dc24a2e 100644 --- a/ci/gradle.yml +++ b/ci/gradle.yml @@ -13,5 +13,7 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew - name: Build with Gradle run: ./gradlew build