Skip to content

Commit 143b3b7

Browse files
committed
Fixed Workflow Error
1 parent fdf29b4 commit 143b3b7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
distribution: 'zulu'
3333
java-version: 19
3434

35+
- name: Grant execute permission for gradlew
36+
run: chmod +x gradlew
37+
3538
- name: Full build
3639
if: matrix.os == 'ubuntu-latest'
3740
run: ./gradlew build
@@ -52,6 +55,10 @@ jobs:
5255
with:
5356
distribution: 'zulu'
5457
java-version: 19
58+
- uses: gradle/actions/setup-gradle@v4
59+
60+
- name: Grant execute permission for gradlew
61+
run: chmod +x gradlew
5562

5663
- name: Prep docs
5764
run: ./gradlew dokkaHtml

.github/workflows/release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
distribution: 'zulu'
2828
java-version: '17'
2929

30+
- uses: gradle/actions/setup-gradle@v4
31+
32+
- name: Grant execute permission for gradlew
33+
run: chmod +x gradlew
34+
3035
- name: Cache gradle, wrapper and buildSrc
3136
uses: actions/cache@v3
3237
with:

0 commit comments

Comments
 (0)