From bb0d16fa7c79233bafb7000cb8aec50ea8fb8003 Mon Sep 17 00:00:00 2001 From: Seung Hyun Kim Date: Thu, 9 Mar 2023 15:32:28 -0600 Subject: [PATCH] Delete ci-sphinx.yml https://github.com/ammaraskar/sphinx-action/issues/43 https://github.com/ammaraskar/sphinx-action/issues/49 Build is working okay, it is the github-action not compatible with poetry. --- .github/workflows/ci-sphinx.yml | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/ci-sphinx.yml diff --git a/.github/workflows/ci-sphinx.yml b/.github/workflows/ci-sphinx.yml deleted file mode 100644 index 2d835b351..000000000 --- a/.github/workflows/ci-sphinx.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI-sphinx - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "main" branch - pull_request: - branches: - - 'main' - - 'update-*' - - 'doc_patch' - push: - branches: [ 'main', 'doc_patch' ] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - name: Sphinx Build - # You may pin to the exact commit or the version. - # uses: ammaraskar/sphinx-action@8b4f60114d7fd1faeba1a712269168508d4750d2 - uses: ammaraskar/sphinx-action@master - with: - # The folder containing your sphinx docs. - docs-folder: docs/ - pre-build-command: | - pip install -U pip - python -c "import sys; print(sys.version)" - pip install poetry - poetry config virtualenvs.in-project false - poetry install --all-extras - # The command used to build your documentation. - # build-command: make html #"-W --keep-going" # -n" - build-command: poetry run sphinx-build docs ./docs/_build/html \ No newline at end of file