Skip to content

Commit

Permalink
Fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Max K committed Feb 11, 2024
1 parent c5796e7 commit cdefe3e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
- '*' # Remove before merge

env:
JDK_VERSION: '17'
JDK_DISTRIBUTION: 'temurin'
JDK_VERSION: 17
JDK_DISTRIBUTION: temurin

permissions:
pull-requests: write
Expand All @@ -26,8 +26,8 @@ jobs:
- name: Setup JDK
uses: actions/[email protected]
with:
java-version: $JDK_VERSION
distribution: $JDK_DISTRIBUTION
java-version: '$JDK_VERSION'
distribution: '$JDK_DISTRIBUTION'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup JDK
uses: actions/[email protected]
with:
java-version: $JDK_VERSION
distribution: $JDK_DISTRIBUTION
java-version: '$JDK_VERSION'
distribution: '$JDK_DISTRIBUTION'
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3

0 comments on commit cdefe3e

Please sign in to comment.