Fix rust pyo3 publish #599
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: Publish qcs-sdk-python documentation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
jobs: | |
publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- uses: syphar/restore-virtualenv@v1 | |
- name: Build qcs-sdk-python documentation | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: --cwd crates/python --makefile Makefile.toml docs | |
- name: Deploy preview | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: crates/python/build/docs | |
preview-branch: qcs-sdk-python-docs | |
- name: Deploy docs | |
if: ${{ github.event_name == 'push' }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: crates/python/build/docs | |
publish_branch: qcs-sdk-python-docs | |