Skip to content

Websocket Frontend Notifications: specify duration (#382) #538

Websocket Frontend Notifications: specify duration (#382)

Websocket Frontend Notifications: specify duration (#382) #538

Workflow file for this run

name: Build and deploy documentation
on:
push:
branches:
- main
pull_request:
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.repository_owner == 'cesium-ml'
steps:
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.cache/sphinx
~/.ccache
~/.local
~/.npm
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.docs.txt
- name: Build docs
run: |
cd doc
make html
touch _build/html/.nojekyll
- name: Install SSH Client 🔑
if: github.ref == 'refs/heads/main'
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.CI_DEPLOY_KEY }}
- name: Deploy docs
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
FOLDER: doc/_build/html
REPOSITORY_NAME: cesium-ml/baselayer
BRANCH: gh-pages
SSH: true