Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
weilinglindachen authored Apr 14, 2024
1 parent 1426577 commit 148e978
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy Documentation

on:
push:
branches:
- main

permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Python 🐍
uses: actions/setup-python@v3
- name: Install sphinx dependencies
run: |
pip install sphinx sphinx-rtd-theme myst_parser
- name: Install and Build 🔧
run: sphinx-build doc/source doc/build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: doc/build

0 comments on commit 148e978

Please sign in to comment.