Skip to content

Commit

Permalink
Fix github publish workflow to use Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghmutualmobile committed Jul 30, 2023
1 parent 8915ed6 commit aa2518a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'adopt'

- name: Grant Permission to Execute Gradle
Expand Down Expand Up @@ -60,4 +60,4 @@ jobs:
tag_name: ${{ github.event.inputs.versionName }}
release_name: ${{ github.event.inputs.versionName }}
draft: true
prerelease: false
prerelease: false

0 comments on commit aa2518a

Please sign in to comment.