Skip to content

Commit c68d3e5

Browse files
committed
fix: add executable permission to gradlew and update workflow
1 parent 3074903 commit c68d3e5

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121

22+
- name: Validate Gradle Wrapper
23+
uses: gradle/actions/wrapper-validation@v3
24+
2225
- name: Set up JDK 21
2326
uses: actions/setup-java@v4
2427
with:
@@ -29,7 +32,9 @@ jobs:
2932
uses: gradle/actions/setup-gradle@v3
3033

3134
- name: Make gradlew executable
32-
run: chmod +x gradlew
35+
run: |
36+
chmod +x gradlew
37+
git update-index --chmod=+x gradlew
3338
3439
- name: Extract version from build.gradle
3540
id: get_version

gradlew

100644100755
File mode changed.

0 commit comments

Comments
 (0)