Skip to content

Rename post-open-role to post-open-role.md #24

Rename post-open-role to post-open-role.md

Rename post-open-role to post-open-role.md #24

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install \
mkdocs-material==9.1.17 \
mkdocs-awesome-pages-plugin==2.9.1 \
mkdocs-autolinks-plugin==0.7.1
- run: mkdocs gh-deploy --force