Skip to content

Commit

Permalink
Removed Java version from flatpak Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed Apr 9, 2024
1 parent 8f00de2 commit 82dca27
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/flatpak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,18 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true

- name: Retrieve Gradle properties
uses: BrycensRanch/read-properties-action@v1
id: all
with:
file: gradle.properties
all: true

- name: Setup Java 17
- name: Setup Java ${{ steps.all.outputs.minJavaVersion }}
uses: actions/setup-java@v3
with:
java-version: 17
java-version: ${{ steps.all.outputs.minJavaVersion }}
distribution: zulu

- name: Determine Java dependencies
Expand Down

0 comments on commit 82dca27

Please sign in to comment.