Skip to content

Footer with Navigation #93

Footer with Navigation

Footer with Navigation #93

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
paths:
- .github/workflows/build-docs.yml
- docs/**
- overrides/**
- mkdocs.yml
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
paths:
- .github/workflows/build-docs.yml
- docs/**
- overrides/**
- mkdocs.yml
jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install MkDocs
run: pip3 install mkdocs-material mkdocs-awesome-pages-plugin mkdocs-minify-plugin
- name: Build Docs
run: |
mkdocs build --clean -d dist
- name: Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PURPLE_WAVE_084806310 }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
action: "upload"
app_location: "/dist"
api_location: ""
output_location: "/"
close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:
- name: Close Pull Request
id: closepullrequest
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_PURPLE_WAVE_084806310 }}
action: "close"