@@ -192,7 +192,7 @@ jobs:
192
192
- name : Publish Desktop framework dependent (Windows x64)
193
193
working-directory : ./src/NodeDev.Blazor.MAUI
194
194
shell : pwsh
195
- run : ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained false
195
+ run : ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained $False
196
196
197
197
- name : Zip Web Server framework dependent (Windows x64)
198
198
shell : pwsh
@@ -202,7 +202,7 @@ jobs:
202
202
- name : Publish Desktop self contained (Windows x64)
203
203
working-directory : ./src/NodeDev.Blazor.MAUI
204
204
shell : pwsh
205
- run : ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained true
205
+ run : ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained $True
206
206
207
207
- name : Zip Web Server self contained (Windows x64)
208
208
shell : pwsh
@@ -212,7 +212,7 @@ jobs:
212
212
- name : Publish Desktop framework dependent (Windows arm64)
213
213
working-directory : ./src/NodeDev.Blazor.MAUI
214
214
shell : pwsh
215
- run : ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained false
215
+ run : ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained $False
216
216
217
217
- name : Zip Web Server framework dependent (Windows arm64)
218
218
shell : pwsh
@@ -222,7 +222,7 @@ jobs:
222
222
- name : Publish Desktop self contained (Windows arm64)
223
223
working-directory : ./src/NodeDev.Blazor.MAUI
224
224
shell : pwsh
225
- run : ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained true
225
+ run : ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained $True
226
226
227
227
- name : Zip Web Server self contained (Windows arm64)
228
228
shell : pwsh
0 commit comments