Skip to content

Commit

Permalink
Fix MAUI pipeline packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
snakex64 committed Nov 22, 2024
1 parent c035bc9 commit 7a867d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
- name: Publish Desktop framework dependent (Windows x64)
working-directory: ./src/NodeDev.Blazor.MAUI
shell: pwsh
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained false
run: ./publishAndCleanup.ps1 -architecture "win-x64" -selfContained $False

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

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

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

- name: Zip Web Server self contained (Windows arm64)
shell: pwsh
Expand Down

0 comments on commit 7a867d0

Please sign in to comment.