Update dotnet-desktop.yml

This commit is contained in:
Yezi 2023-04-13 09:40:26 +08:00 committed by GitHub
parent 384785d835
commit 50ad24c0c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,12 +89,12 @@ jobs:
- name: Decode the pfx - name: Decode the pfx
run: | run: |
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.Base64_Encoded_Pfx }}") $pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.Base64_Encoded_Pfx }}")
$certificatePath = Join-Path -Path $env:Wap_Project_Directory -ChildPath GitHubActionsWorkflow.pfx $certificatePath = Join-Path -Path $env:Test_Project_Path -ChildPath GitHubActionsWorkflow.pfx
[IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte) [IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
# Create the app package by building and packaging the Windows Application Packaging project # Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package - name: Create the app package
run: msbuild $env:Wap_Project_Path /p:Configuration=$env:Configuration /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:PackageCertificatePassword=${{ secrets.Pfx_Key }} run: msbuild $env:Test_Project_Path /p:Configuration=$env:Configuration /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:PackageCertificatePassword=${{ secrets.Pfx_Key }}
env: env:
Appx_Bundle: Always Appx_Bundle: Always
Appx_Bundle_Platforms: x86|x64 Appx_Bundle_Platforms: x86|x64
@ -103,11 +103,11 @@ jobs:
# Remove the pfx # Remove the pfx
- name: Remove the pfx - name: Remove the pfx
run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx run: Remove-Item -path $env:Test_Project_Path\GitHubActionsWorkflow.pfx
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: MSIX Package name: MSIX Package
path: ${{ env.Wap_Project_Directory }}\AppPackages path: ${{ env.Test_Project_Path }}\AppPackages