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
This commit is contained in:
林柏臣
2019-11-04 10:46:50 +08:00
committed by GitHub
parent a8be2ef60a
commit 30640b57f2
+2
View File
@@ -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