Skip to content

Commit 5b193ed

Browse files
committedJan 1, 2025·
Fix the deploy script - use JDK 17 and fix GH_TOKEN.
1 parent fd3c6c0 commit 5b193ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/jvm-deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
runs-on: ubuntu-latest
2929
name: deploy
3030
env:
31-
gh_token: ${{ secrets.GH_TOKEN }}
31+
GH_TOKEN: ${{ github.token }}
3232
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
3333
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
3434
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
3535
ORG_GRADLE_PROJECT_gpg_key64: ${{ secrets.GPG_KEY64 }}
3636
steps:
3737
- uses: actions/checkout@v4
38-
- name: jdk 11
38+
- name: jdk 17
3939
uses: actions/setup-java@v4
4040
with:
41-
java-version: 11
41+
java-version: 17
4242
distribution: 'temurin'
4343
- name: gradle caching
4444
uses: gradle/actions/setup-gradle@v3

0 commit comments

Comments
 (0)
Please sign in to comment.