Skip to content

Commit 562bbef

Browse files
committed
Switch to using ./gradlew in CI and release workflows
1 parent 2283a79 commit 562bbef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: gradle/actions/setup-gradle@v5
2727

2828
- name: Build and test
29-
run: gradle build
29+
run: ./gradlew build
3030

3131
- name: Upload test results
3232
if: always()

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
fi
5353
5454
- name: Build and test
55-
run: gradle build
55+
run: ./gradlew build
5656

5757
- name: Publish to Local Maven Staging
58-
run: gradle publish --stacktrace --info
58+
run: ./gradlew publish --stacktrace --info
5959

6060
- name: Release
6161
env:
@@ -65,7 +65,7 @@ jobs:
6565
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.MAVEN_CENTRAL_BRIGHTINVENTIONS_PL_GPG_PUBLIC_KEY }}
6666
JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_BRIGHTINVENTIONS_PL_USERNAME }}
6767
JRELEASER_MAVENCENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_BRIGHTINVENTIONS_PL_PASSWORD }}
68-
run: gradle jreleaserRelease --stacktrace --info
68+
run: ./gradlew jreleaserRelease --stacktrace --info
6969

7070
- name: Update to next development version
7171
run: |

0 commit comments

Comments
 (0)