Skip to content

Commit

Permalink
Create workflow docs.yml
Browse files Browse the repository at this point in the history
pipeline do mkdocs
  • Loading branch information
cibelinda authored Dec 13, 2024
1 parent 2ffcceb commit be6e761
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy Docs

on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'

permissions:
contents: write

jobs:
docs:
name: mkdocs deploy
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.11"]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

- name: Using cache to MkDocs
uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material

- name: Deploy Docs
run: mkdocs gh-deploy --force

0 comments on commit be6e761

Please sign in to comment.