We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3606c commit 5e1584fCopy full SHA for 5e1584f
.github/workflows/release.yml
@@ -69,6 +69,17 @@ jobs:
69
with:
70
submodules: recursive
71
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
83
- name: Cache Cargo registry
84
uses: actions/cache@v4
85
@@ -91,10 +102,6 @@ jobs:
91
102
restore-keys: |
92
103
${{ runner.os }}-vcpkg-
93
104
94
- - name: Install dependencies
95
- if: matrix.extra-deps != ''
96
- run: ${{ matrix.extra-deps }}
97
-
98
105
- name: Install Rust dependencies
99
106
run: |
100
107
cargo install wasm-tools wit-bindgen-cli || true
0 commit comments