Changed Get-PnPPage
to also allow all site pages to be returned
#2049
Workflow file for this run
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: Check Documentation Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ dev ] | |
paths: | |
- 'documentation/**' | |
- 'pages/**' | |
permissions: read-all | |
jobs: | |
docfx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
path: master | |
- uses: actions/checkout@v4 | |
with: | |
ref: dev | |
path: dev | |
- uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
path: gh-pages | |
- name: Setup .NET 7.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7.x | |
- run: dotnet tool install -g docfx --version 2.72.1 | |
- name: Build docs | |
shell: pwsh | |
run: | | |
./dev/pages/Build-Site.ps1 |