streamline & improve InputPane handling in sheets #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build, sign, and package a WinUI 3 MSIX desktop application | |
# built on .NET. | |
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Release] | |
runs-on: windows-latest | |
env: | |
Solution_Name: UniSky.sln | |
Project_Name: UniSky | |
ProjectFile_Name: UniSky/UniSky.csproj | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Adjust Package Version | |
run: | | |
$epoch = (Get-Date) - (Get-Date -Day 1) | |
$file = (Resolve-Path "$env:Project_Name/Package.appxmanifest") | |
$xml = [System.Xml.XmlDocument]::new() | |
$xml.Load($file) | |
$node = $xml.GetElementsByTagName("Identity", "http://schemas.microsoft.com/appx/manifest/foundation/windows10")[0] | |
$version = [System.Version]::Parse($node.GetAttribute("Version")) | |
$version = [System.Version]::new($version.Major, $version.Minor, $version.Build, $epoch.TotalMinutes); | |
$node.SetAttribute("Version", $version.ToString()) | |
$xml.Save($file) | |
# Decode the base 64 encoded pfx and save the Signing_Certificate | |
- name: Load Certificate | |
run: | | |
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.BASE64_ENCODED_PFX }}") | |
$certificatePath = "GitHubActionsWorkflow.pfx" | |
[IO.File]::WriteAllBytes("$env:Project_Name/$certificatePath", $pfx_cert_byte) | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
# Restore the application to populate the obj folder with RuntimeIdentifiers | |
- name: Restore NuGet Packages | |
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:Platform=x64 | |
env: | |
Configuration: ${{ matrix.configuration }} | |
# Create the app package by building and packaging the project | |
- name: Build App Packages | |
run: msbuild $env:ProjectFile_Name /p:Configuration=$env:Configuration /p:SourceRevisionBranch="$env:Head_Ref" /p:SourceRevisionCommit="$($env:Sha.Substring(0, 7))" /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:AppxBundlePlatforms="x86|x64|ARM|ARM64" /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:AppxPackageDir="$env:Appx_Package_Dir" /p:GenerateAppxPackageOnBuild=true | |
env: | |
Appx_Bundle: Always | |
Appx_Package_Build_Mode: SideloadOnly | |
Appx_Package_Dir: Packages\ | |
Configuration: ${{ matrix.configuration }} | |
Head_Ref: ${{ github.head_ref }} | |
Sha: ${{ github.sha }} | |
# Remove the pfx | |
- name: Cleanup | |
run: Remove-Item -path UniSky/GitHubActionsWorkflow.pfx | |
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact | |
- name: Upload Appx Package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AppxPackage-${{ matrix.configuration }} | |
path: | | |
${{ env.Project_Name }}\\Packages |