Skip to content

Commit ed2e5dc

Browse files
committed
Ensure gradlew is executable in CI workflow
1 parent 4af6e29 commit ed2e5dc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17+
- name: Make gradlew executable
18+
run: chmod +x ./gradlew
1719
- uses: actions/setup-java@v4
1820
with:
1921
distribution: temurin
@@ -27,6 +29,8 @@ jobs:
2729
runs-on: ubuntu-latest
2830
steps:
2931
- uses: actions/checkout@v4
32+
- name: Make gradlew executable
33+
run: chmod +x ./gradlew
3034
- uses: actions/setup-java@v4
3135
with:
3236
distribution: temurin
@@ -40,6 +44,8 @@ jobs:
4044
runs-on: ubuntu-latest
4145
steps:
4246
- uses: actions/checkout@v4
47+
- name: Make gradlew executable
48+
run: chmod +x ./gradlew
4349
- uses: actions/setup-java@v4
4450
with:
4551
distribution: temurin

0 commit comments

Comments
 (0)