Skip to content

Commit

Permalink
Fix the deploy script - use JDK 17 and fix GH_TOKEN.
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg committed Jan 1, 2025
1 parent fd3c6c0 commit 5b193ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/jvm-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
runs-on: ubuntu-latest
name: deploy
env:
gh_token: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ github.token }}
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
ORG_GRADLE_PROJECT_gpg_key64: ${{ secrets.GPG_KEY64 }}
steps:
- uses: actions/checkout@v4
- name: jdk 11
- name: jdk 17
uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: 'temurin'
- name: gradle caching
uses: gradle/actions/setup-gradle@v3
Expand Down

0 comments on commit 5b193ed

Please sign in to comment.