Skip to content

Commit 7447cdc

Browse files
committed
dotnet restore
1 parent e2256f5 commit 7447cdc

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/deploy-github-pages.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
- name: Restore solution
4242
run: dotnet restore "$SOLUTION_FILE"
4343

44+
- name: Restore WebAssembly workload
45+
run: dotnet workload restore
46+
4447
- name: Build solution
4548
run: dotnet build "$SOLUTION_FILE" -warnaserror
4649

@@ -92,6 +95,9 @@ jobs:
9295
- name: Restore solution
9396
run: dotnet restore "$SOLUTION_FILE"
9497

98+
- name: Restore WebAssembly workload
99+
run: dotnet workload restore
100+
95101
- name: Build solution
96102
run: dotnet build "$SOLUTION_FILE" -warnaserror
97103

@@ -138,6 +144,9 @@ jobs:
138144
- name: Restore solution
139145
run: dotnet restore "$SOLUTION_FILE"
140146

147+
- name: Restore WebAssembly workload
148+
run: dotnet workload restore
149+
141150
- name: Build solution
142151
run: dotnet build "$SOLUTION_FILE" -warnaserror
143152

@@ -179,6 +188,9 @@ jobs:
179188
with:
180189
global-json-file: global.json
181190

191+
- name: Restore WebAssembly workload
192+
run: dotnet workload restore
193+
182194
- name: Resolve release version
183195
id: release_version
184196
run: |
@@ -213,6 +225,9 @@ jobs:
213225
with:
214226
global-json-file: global.json
215227

228+
- name: Restore WebAssembly workload
229+
run: dotnet workload restore
230+
216231
- name: Publish standalone WASM app
217232
run: >
218233
dotnet publish

.github/workflows/pr-validation.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
- name: Restore solution
3737
run: dotnet restore "$SOLUTION_FILE"
3838

39+
- name: Restore WebAssembly workload
40+
run: dotnet workload restore
41+
3942
- name: Build solution
4043
run: dotnet build "$SOLUTION_FILE" -warnaserror
4144

@@ -81,6 +84,9 @@ jobs:
8184
- name: Restore solution
8285
run: dotnet restore "$SOLUTION_FILE"
8386

87+
- name: Restore WebAssembly workload
88+
run: dotnet workload restore
89+
8490
- name: Build solution
8591
run: dotnet build "$SOLUTION_FILE" -warnaserror
8692

@@ -124,6 +130,9 @@ jobs:
124130
- name: Restore solution
125131
run: dotnet restore "$SOLUTION_FILE"
126132

133+
- name: Restore WebAssembly workload
134+
run: dotnet workload restore
135+
127136
- name: Build solution
128137
run: dotnet build "$SOLUTION_FILE" -warnaserror
129138

0 commit comments

Comments
 (0)