Publish Docs #1
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
name: Publish Docs | |
on: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
publish-docs: | |
runs-on: windows-latest | |
steps: | |
- name: Install .NET | |
uses: actions/setup-dotnet@v3 | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # required to publish docs | |
- name: Publish Docs | |
env: | |
BUILD_BOT_PASSWORD: ${{ secrets.BUILD_BOT_PASSWORD }} | |
run: .\build.ps1 publish --no-test --trigger publish-docs |