Skip to content

Commit

Permalink
fix(ci): change setup-java version to 21
Browse files Browse the repository at this point in the history
  • Loading branch information
philprime committed Aug 8, 2024
1 parent bd36662 commit f383ca3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ jobs:
- name: Check out code
uses: actions/checkout@v4

- name: Set up JDK 11
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 11
distribution: "temurin"
java-version: 21
cache: "gradle"

- name: Release build
run: ./gradlew client:assembleRelease
run: ./gradlew client:assembleRelease --no-daemon

- name: Export ring file
run: echo $SIGNING_KEY | base64 -d > SecretRingKey.gpg
Expand Down

0 comments on commit f383ca3

Please sign in to comment.