Ruben 11 달 전
부모
커밋
821c084133
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      .github/workflows/TestSignWindows.yaml
  2. 1 1
      Build/Build WPF.ps1

+ 2 - 2
.github/workflows/TestSignWindows.yaml

@@ -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 $True -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 $True -outputPath "${{ github.workspace }}\Build\PicView-v${{steps.get-version.outputs.version}}-win-arm64"
         shell: pwsh
 
 

+ 1 - 1
Build/Build WPF.ps1

@@ -5,7 +5,7 @@ param (
     [string]$outputPath = $PSScriptRoot
 )
 param (
-    [bool]$selfContained = true
+    [bool]$selfContained = $True
 )
 
 # Define the core project path relative to the script's location