Skip to content

Commit 6be175f

Browse files
authored
fix: make gradle executable by granting file permissions in build.yml
Signed-off-by: JonasDevDE <[email protected]>
1 parent a77b498 commit 6be175f

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
@@ -16,6 +16,8 @@ jobs:
1616
with:
1717
java-version: 17
1818
distribution: 'zulu' # Alternative distribution options are available
19+
- name: Make gradlew executable
20+
run: chmod +x gradlew
1921
- name: Cache SonarQube packages
2022
uses: actions/cache@v4
2123
with:
@@ -31,4 +33,4 @@ jobs:
3133
- name: Build and analyze
3234
env:
3335
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
34-
run: ./gradlew build sonar --info
36+
run: ./gradlew build sonar --info

0 commit comments

Comments
 (0)