Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit 5925903

Browse files
committed
Made gradlew executable
1 parent 8a1e412 commit 5925903

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
restore-keys: |
2727
${{ runner.os }}-gradle-
2828
- name: Build with Gradle
29-
run: ./gradlew buildPlugin
29+
run: |
30+
chmod +x ./gradlew
31+
./gradlew buildPlugin
3032
- name: Cleanup Gradle Cache
3133
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
3234
# Restoring these files from a GitHub Actions cache might cause problems for future builds.

0 commit comments

Comments
 (0)