Skip to content

Commit

Permalink
Create mkdocs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly authored Apr 2, 2024
1 parent 8d2f68b commit dddc76d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to GitHub Pages

on:
push:
- gh-pages
branches:

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install dependencies
run: |
pip install mkdocs
- name: Build site
run: mkdocs build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./docs/site

0 comments on commit dddc76d

Please sign in to comment.