Bump serde_json from 1.0.125 to 1.0.127 (#1273) #579
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: Docs Publish | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
concurrency: | |
group: docs-gh-pages | |
jobs: | |
deploy: | |
if: github.repository_owner == 'Qiskit' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U virtualenv setuptools wheel nox | |
sudo apt-get install graphviz pandoc | |
- name: Build docs | |
run: | | |
tools/build_documentation_dev.sh | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
name: html_docs | |
path: docs/build/html | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: dev_docs | |
force_orphan: true |