Adds Suspend/Resume functionality, so you can pause all runspaces/operations; Adds Disable/Enable functionality, so you can block the server from accepting new requests; Improves console output, and adds more key bindings for more control #921
Workflow file for this run
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: Pode CI - Docs | |
on: | |
push: | |
branches: | |
- '*' | |
- '!gh-pages' | |
paths: | |
- 'mkdocs.yml' | |
- 'mkdocs-overrides/**' | |
- 'docs/**' | |
- '.github/workflows/ci-docs.yml' | |
- 'pode.build.ps1' | |
- 'src/Pode.psd1' | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- 'mkdocs.yml' | |
- 'mkdocs-overrides/**' | |
- 'docs/**' | |
- '.github/workflows/ci-docs.yml' | |
- 'pode.build.ps1' | |
- 'src/Pode.psd1' | |
env: | |
INVOKE_BUILD_VERSION: '5.12.0' | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.x | |
- name: Install Invoke-Build | |
shell: pwsh | |
run: | | |
Install-Module -Name InvokeBuild -RequiredVersion $env:INVOKE_BUILD_VERSION -Force | |
- name: Build Documentation | |
shell: pwsh | |
run: | | |
Invoke-Build DocsBuild |