Update mkdocs.yml #10
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: Docs | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .github/workflows/NotifyOnStarred.yml | |
- .github/workflows/Publish.yml | |
- .github/workflows/Test.yml | |
- tests/** | |
- .vscode/** | |
jobs: | |
DeployDocs: | |
# Grant the minimum permissions necessary for this job to publish to GitHub Pages | |
permissions: | |
contents: write | |
pages: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: MkDocs GH-Deploy | |
if: github.ref == 'refs/heads/main' | |
shell: pwsh | |
run: .\build.ps1 -Bootstrap -Task PublishDocs |