Tray: Fall back to default app icon if none are set #299
This file contains hidden or 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
| name: Publish Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Clone Repo | |
| uses: actions/checkout@v1 | |
| - name: Setup Visual Studio Command Prompt | |
| uses: microsoft/setup-msbuild@v1.0.2 | |
| - name: Download DocFX | |
| run: | | |
| mkdir .tools/docfx | |
| Invoke-WebRequest -Uri "https://github.com/dotnet/docfx/releases/download/v${env:DOCFXVERSION}/docfx-win-x64-v${env:DOCFXVERSION}.zip" -OutFile ".tools/docfx/docfx.zip" | |
| [System.IO.Compression.ZipFile]::ExtractToDirectory(".tools/docfx/docfx.zip", ".tools/docfx" ) | |
| env: | |
| DOCFXVERSION: 2.78.3 | |
| - name: Install .NET OMD Generator | |
| run: dotnet tool install --tool-path .tools/omd dotMorten.OmdGenerator --version 1.4.0 | |
| - name: Generate OMD | |
| run: | | |
| mkdir artifacts/docs/api | |
| .tools/omd/generateomd /source="src/WinUIEx/." /output=artifacts/docs/api/omd.html | |
| - name: Install NuGet | |
| uses: nuget/setup-nuget@v1 | |
| - name: Build Documentation | |
| env: | |
| DOCFX_SOURCE_BRANCH_NAME: main | |
| run: | | |
| .tools/docfx/docfx.exe metadata docs/docfx.json | |
| .tools/docfx/docfx.exe build docs/docfx.json | |
| - name: Publish Documentation | |
| env: | |
| ACCESS_TOKEN: ${{ secrets.GH_PAT }} | |
| BRANCH: gh-pages | |
| DOCSFOLDER: artifacts/docs_site | |
| shell: cmd | |
| run: | | |
| cd %DOCSFOLDER% | |
| git init | |
| git config --local user.name "%GITHUB_ACTOR%" | |
| git config --local user.email "%GITHUB_ACTOR%@users.noreply.github.com" | |
| git config --local core.autocrlf false | |
| git add . | |
| git commit -m "Auto-update doc from commit %GITHUB_SHA%" | |
| git push --force https://%ACCESS_TOKEN%@github.com/%GITHUB_REPOSITORY%.git master:%BRANCH% | |
| rmdir .git /S /Q | |