Skip to content

bump xdna version to latest (#51) #93

bump xdna version to latest (#51)

bump xdna version to latest (#51) #93

Workflow file for this run

name: deploy-book
on:
push:
branches:
- main # or 'master'
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -U "jupyter-book<2" sphinxcontrib.mermaid
- name: Build the book
run: jupyter-book build ./docs --all
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/_build/html
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4