Skip to content

Commit

Permalink
fix typo and order
Browse files Browse the repository at this point in the history
  • Loading branch information
o-liver authored Nov 13, 2023
1 parent fea656d commit 2ed14af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Determine Java version
id: java_version
run: |
if [[ "${{ matrix.base-image-tag }}" == *"-bookwarm" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
if [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bookworm" ]]; then
echo 'version=11' >> $GITHUB_OUTPUT
else
echo 'version=17' >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Determine Java version
id: java_version
run: |
if [[ "${{ matrix.base-image-tag }}" == *"-bookwarm" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
if [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bookworm" ]]; then
echo 'version=11' >> $GITHUB_OUTPUT
else
echo 'version=17' >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 2ed14af

Please sign in to comment.