Remove a few unnecessary titles from notebooks #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Doc Website | |
on: | |
push: | |
branches: | |
- main | |
paths: # run this action only when the docs folder is changed | |
- 'docs/**' | |
- '*.js' | |
workflow_dispatch: # allows triggering a GitHub action manually - see 'Actions' tab | |
# allow the action to write to the gh-pages branch | |
permissions: | |
contents: write | |
jobs: | |
#--------------------------------------------------- | |
# Release Docs | |
#--------------------------------------------------- | |
build-and-release-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
# required for docs/hr/build to be available | |
- name: Install node | |
run: | | |
sudo apt-get update | |
sudo apt-get install nodejs npm | |
- name: Build docs | |
run: | | |
# Build HR and API docs | |
make gen_docs | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: build | |
cname: docs.superduper.io |