-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into planar_layout
- Loading branch information
Showing
404 changed files
with
33,268 additions
and
26,607 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,41 @@ | ||
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@v2 | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U virtualenv setuptools wheel tox | ||
sudo apt-get install graphviz pandoc | ||
- name: Build and publish | ||
env: | ||
encrypted_rclone_key: ${{ secrets.encrypted_rclone_key }} | ||
encrypted_rclone_iv: ${{ secrets.encrypted_rclone_iv }} | ||
- name: Build docs | ||
run: | | ||
tools/deploy_documentation_dev.sh | ||
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,42 @@ | ||
name: Docs Publish | ||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
concurrency: | ||
group: docs-gh-pages | ||
|
||
jobs: | ||
deploy: | ||
if: github.repository_owner == 'Qiskit' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -U virtualenv setuptools wheel tox | ||
sudo apt-get install graphviz pandoc | ||
- name: Build and publish | ||
env: | ||
encrypted_rclone_key: ${{ secrets.encrypted_rclone_key }} | ||
encrypted_rclone_iv: ${{ secrets.encrypted_rclone_iv }} | ||
QISKIT_DOCS_BUILD_TUTORIALS: 'always' | ||
- name: Build docs | ||
run: | | ||
tools/deploy_documentation.sh | ||
tools/build_documentation_release.sh | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
name: html_docs | ||
path: release_docs/ | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: gh-pages | ||
publish_dir: release_docs/ | ||
force_orphan: true |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.