Skip to content

Commit 7a867d0

Browse files
committed
Fix MAUI pipeline packaging
1 parent c035bc9 commit 7a867d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
- name: Publish Desktop framework dependent (Windows x64)
193193
working-directory: ./src/NodeDev.Blazor.MAUI
194194
shell: pwsh
195-
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained false
195+
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained $False
196196

197197
- name: Zip Web Server framework dependent (Windows x64)
198198
shell: pwsh
@@ -202,7 +202,7 @@ jobs:
202202
- name: Publish Desktop self contained (Windows x64)
203203
working-directory: ./src/NodeDev.Blazor.MAUI
204204
shell: pwsh
205-
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained true
205+
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained $True
206206

207207
- name: Zip Web Server self contained (Windows x64)
208208
shell: pwsh
@@ -212,7 +212,7 @@ jobs:
212212
- name: Publish Desktop framework dependent (Windows arm64)
213213
working-directory: ./src/NodeDev.Blazor.MAUI
214214
shell: pwsh
215-
run: ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained false
215+
run: ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained $False
216216

217217
- name: Zip Web Server framework dependent (Windows arm64)
218218
shell: pwsh
@@ -222,7 +222,7 @@ jobs:
222222
- name: Publish Desktop self contained (Windows arm64)
223223
working-directory: ./src/NodeDev.Blazor.MAUI
224224
shell: pwsh
225-
run: ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained true
225+
run: ./publishAndCleanup.ps1 -architecture "win-arm64" -selfContained $True
226226

227227
- name: Zip Web Server self contained (Windows arm64)
228228
shell: pwsh

0 commit comments

Comments
 (0)