aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2022-03-25 19:55:36 +0100
committern-peugnet <n.peugnet@free.fr>2022-03-25 20:16:57 +0100
commit5d6397ddda48942bdbe4309ad2ade9e4eb6ecb5e (patch)
treee019b2cbf17d6a59312ea1a4ce1c0a06b344094e
parentf853bf46319e4c9fe9c8e71e461405128f22d4c7 (diff)
downloadclub1-docs-5d6397ddda48942bdbe4309ad2ade9e4eb6ecb5e.tar.gz
club1-docs-5d6397ddda48942bdbe4309ad2ade9e4eb6ecb5e.zip
add github action build
-rw-r--r--.github/workflows/build.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..62b1abf
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,25 @@
+name: build
+
+on: push
+
+jobs:
+ sphinx:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Build HTML
+ uses: XanaduAI/sphinx-action@08cb9868314fb5be5f28644b540a38b8faaf8e87
+ with:
+ pre-build-command: pip install myst-parser sphinx-rtd-theme
+ docs-folder: .
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v1
+ with:
+ name: html-docs
+ path: _build/html/
+ - name: Deploy
+ uses: peaceiris/actions-gh-pages@v3
+ if: github.ref == 'refs/heads/main'
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: _build/html