|
@@ -21,7 +21,7 @@ jobs:
|
|
|
# Step 4 (x64): Publish x64 version
|
|
|
- name: Publish x64 version
|
|
|
run: |
|
|
|
- pwsh -File "${{ github.workspace }}\Build\Build WPF.ps1" -Platform "x64" -selfContained $True -outputPath "${{ github.workspace }}\Build\PicView-v${{steps.get-version.outputs.version}}-win-x64"
|
|
|
+ pwsh -File "${{ github.workspace }}\Build\Build WPF.ps1" -Platform "x64" -selfContained 1 -outputPath "${{ github.workspace }}\Build\PicView-v${{steps.get-version.outputs.version}}-win-x64"
|
|
|
shell: pwsh
|
|
|
|
|
|
# Step 5 (x64): Compile .ISS to .EXE Installer for x64
|
|
@@ -34,7 +34,7 @@ jobs:
|
|
|
# Step 6 (arm64): Publish arm64 version
|
|
|
- name: Publish arm64 version
|
|
|
run: |
|
|
|
- pwsh -File "${{ github.workspace }}\Build\Build WPF.ps1" -Platform "arm64" -selfContained $True -outputPath "${{ github.workspace }}\Build\PicView-v${{steps.get-version.outputs.version}}-win-arm64"
|
|
|
+ pwsh -File "${{ github.workspace }}\Build\Build WPF.ps1" -Platform "arm64" -selfContained 1 -outputPath "${{ github.workspace }}\Build\PicView-v${{steps.get-version.outputs.version}}-win-arm64"
|
|
|
shell: pwsh
|
|
|
|
|
|
|