Merge pull request #14 from TelegramSam/librarytop #23
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: Build DIDComm Book using MkDocs | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch | |
env: | |
MKDOCS_VERSION: 1.4.3 | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Build and Deploy Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Main | |
uses: actions/checkout@v2 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mkdocs==${{ env.MKDOCS_VERSION }} mkdocs-material | |
- name: Deploy | |
run: | | |
git pull | |
mkdocs gh-deploy |