Skip to content

Commit

Permalink
re-add build-docs.yml (#1429)
Browse files Browse the repository at this point in the history
  • Loading branch information
gennadigennadigennadi authored Jul 10, 2024
1 parent f646695 commit eba3a75
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and deploy documentation
on:
release:
types: [published]
workflow_dispatch: ~

jobs:
build-documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Install dependencies
run: python -m pip install --upgrade pip mkdocs mkdocs-material
- name: Deploy documentation
run: mkdocs gh-deploy --force

0 comments on commit eba3a75

Please sign in to comment.