Skip to content

Bump pymdown-extensions from 10.1 to 10.2 (#1606) #469

Bump pymdown-extensions from 10.1 to 10.2 (#1606)

Bump pymdown-extensions from 10.1 to 10.2 (#1606) #469

Workflow file for this run

#
# Build documentation site
#
# NOTES:
# This workflow generates and published the documentation site https://microsoft.github.io/PSRule/.
name: Docs
on:
push:
branches:
- main
workflow_dispatch:
permissions: {}
jobs:
deploy:
name: Publish docs
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure
run: |
git config user.name github-actions
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install -r requirements-docs.txt
- name: Deploy site
run: mike deploy --push --update-aliases v3 latest --title 'v3'