diff --git a/.github/workflows/dotnet-desktop2.yml b/.github/workflows/dotnet-desktop2.yml index 25986bb..fba86b8 100644 --- a/.github/workflows/dotnet-desktop2.yml +++ b/.github/workflows/dotnet-desktop2.yml @@ -76,22 +76,11 @@ jobs: - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v1.0.2 - # Execute all unit tests in the solution - - name: Execute unit tests - run: dotnet test - # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration env: - Configuration: ${{ matrix.configuration }} - - # Decode the base 64 encoded pfx and save the Signing_Certificate - - name: Decode the pfx - run: | - $pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.Base64_Encoded_Pfx }}") - $certificatePath = Join-Path -Path $env:Wap_Project_Directory -ChildPath GitHubActionsWorkflow.pfx - [IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte) + Configuration: ${{ matrix.configuration }} # Create the app package by building and packaging the Windows Application Packaging project - name: Create the app package