Skip to content

Commit

Permalink
remove docs build from release workflow (#193)
Browse files Browse the repository at this point in the history
* remove docs build from release workflow

* remove docs.yml
  • Loading branch information
cqc-melf authored Jan 23, 2025
1 parent be0efc4 commit a6d862c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 67 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,37 +113,3 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_PYTKET_QIR_API_TOKEN }}
verbose: true

build_docs:
name: Build docs
if: github.event_name == 'release'
needs: publish_to_pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
submodules: true
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Download all wheels
uses: actions/download-artifact@v4
with:
path: wheelhouse
- name: Install pip, wheel
run: pip install -U pip wheel
- name: Install poetry
run: pip install poetry
- name: Install extension
run: for w in `find wheelhouse/ -type f -name "*.whl"` ; do poetry install $w ; done
- name: Install docs dependencies
run: |
cd docs
bash ./install.sh
- name: Build docs
timeout-minutes: 20
run: |
cd docs
poetry run bash ./build-docs.sh
33 changes: 0 additions & 33 deletions .github/workflows/docs.yml

This file was deleted.

0 comments on commit a6d862c

Please sign in to comment.