Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
limafang committed Oct 30, 2023
2 parents d53013c + 66856fc commit 1fe40a6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/update_pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy to Github Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install mkdocs-glightbox
- run: pip install mkdocs-jupyter
- run: mkdocs gh-deploy --force

0 comments on commit 1fe40a6

Please sign in to comment.