Skip to content

Commit 5e1584f

Browse files
committed
fix: bump java deps for windows release
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent df3606c commit 5e1584f

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ jobs:
6969
with:
7070
submodules: recursive
7171

72+
- name: Install dependencies
73+
if: matrix.extra-deps != ''
74+
run: ${{ matrix.extra-deps }}
75+
76+
- name: Set up JDK 17
77+
if: startsWith(matrix.os, 'windows')
78+
uses: actions/setup-java@v5
79+
with:
80+
java-version: "17"
81+
distribution: "temurin"
82+
7283
- name: Cache Cargo registry
7384
uses: actions/cache@v4
7485
with:
@@ -91,10 +102,6 @@ jobs:
91102
restore-keys: |
92103
${{ runner.os }}-vcpkg-
93104
94-
- name: Install dependencies
95-
if: matrix.extra-deps != ''
96-
run: ${{ matrix.extra-deps }}
97-
98105
- name: Install Rust dependencies
99106
run: |
100107
cargo install wasm-tools wit-bindgen-cli || true

0 commit comments

Comments
 (0)