Skip to content

Update hero image and course link in home.html and custom-hero.css fo… #64

Update hero image and course link in home.html and custom-hero.css fo…

Update hero image and course link in home.html and custom-hero.css fo… #64

Workflow file for this run

name: Build and Deploy MkDocs
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install mkdocs-material mkdocs-jupyter mkdocs-git-revision-date-localized-plugin
- name: Build MkDocs site
run: mkdocs build --strict --verbose
# If you want to deploy to GitHub Pages, uncomment the following lines:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site