diff options
author | sr55 <[email protected]> | 2021-02-20 19:47:34 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-20 19:47:34 +0000 |
commit | ba29c1445d18fc66a8daf1e5269846a8b359a532 (patch) | |
tree | 36163d6931a549663bb7a379d169c467ae36053c /.github/workflows | |
parent | 046724310ccfb30ae421462db40bc7f56ee070f6 (diff) |
WinGui: Refactor the build system to use the dotnet CLI and adding support for future ARM64 builds.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/windows.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bcdb0c83f..018865a44 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -90,16 +90,16 @@ jobs: - name: Build Windows GUI run: | $env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin" - msbuild win\cs\build.xml /t:Nightly /p:PfxFile=$env:SigningCertificate /p:PfxPwd=${{ secrets.HandBrakeTeam_pfx_pwd }} /p:SignTimestampServer=http://time.certum.pl/ + msbuild win\cs\build.xml /t:x64 /p:PfxFile=$env:SigningCertificate /p:PfxPwd=${{ secrets.HandBrakeTeam_pfx_pwd }} /p:SignTimestampServer=http://time.certum.pl/ - name: Upload HandBrake exe Installer uses: actions/upload-artifact@v2 with: name: HandBrake-x86_64-Win_GUI-EXE - path: win/CS/HandBrakeWPF/bin/Debug/HandBrake-Nightly-x86_64-Win_GUI.exe + path: win/CS/HandBrakeWPF/bin/publish/HandBrake-Nightly-x86_64-Win_GUI.exe - name: Upload HandBrake msi Installer uses: actions/upload-artifact@v2 with: name: HandBrake-x86_64-Win_GUI-MSI - path: win/CS/HandBrakeWPF/bin/Debug/HandBrake-Nightly-x86_64-Win_GUI.msi + path: win/CS/HandBrakeWPF/bin/publish/HandBrake-Nightly-x86_64-Win_GUI.msi |