Bump pymdown-extensions from 10.11.2 to 10.12 #434
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] | |
release: | |
types: [published] | |
workflow_dispatch: | |
# Add a concurrency group so that doc publish doesn't interfere with each other. | |
concurrency: | |
group: publish-docs | |
cancel-in-progress: false | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
- name: Publish dev docs | |
uses: ./ | |
with: | |
version: dev | |
- name: Publish Release docs | |
if: ${{ github.event.release.tag_name }} | |
uses: ./ | |
with: | |
version: ${{ github.event.release.tag_name }} latest | |
default_version: ${{ github.event.release.tag_name }} |