Skip to content

renamed transmon -> demo #30

renamed transmon -> demo

renamed transmon -> demo #30

Workflow file for this run

name: publish-doc
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
concurrency:
# cancel previous runs of this workflow
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: List installed dependencies
run: python -m pip list
- name: Build Docs
run: mkdocs build
- name: Publish website
run: mkdocs gh-deploy --force