From e9f82cb4ac6670d082c1ad3c88c20ed282ea7f7b Mon Sep 17 00:00:00 2001 From: AlxdrPolyakov <122611538+AlxdrPolyakov@users.noreply.github.com> Date: Thu, 5 Sep 2024 11:47:40 +0100 Subject: [PATCH] Delete .github/workflows/publish_docs.yml Signed-off-by: AlxdrPolyakov <122611538+AlxdrPolyakov@users.noreply.github.com> --- .github/workflows/publish_docs.yml | 57 ------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/publish_docs.yml diff --git a/.github/workflows/publish_docs.yml b/.github/workflows/publish_docs.yml deleted file mode 100644 index 6fd42de7..00000000 --- a/.github/workflows/publish_docs.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Documentation on GitHub Pages - -on: - push: - branches: - - main - #pull_request: - -jobs: - deploy: - runs-on: ubuntu-latest - permissions: - contents: write - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - steps: - - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v3 - with: - python-version: '3.8' - - - name: Upgrade pip - run: | - # install pip=>20.1 to use "pip cache dir" - python3 -m pip install --upgrade pip - - - name: Get pip cache dir - id: pip-cache - run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - - - name: pandoc for nbsphinx - run: | - wget https://github.com/jgm/pandoc/releases/download/3.1.3/pandoc-3.1.3-1-amd64.deb - sudo dpkg -i pandoc-3.1.3-1-amd64.deb - - - name: Cache dependencies - uses: actions/cache@v3 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies - run: python3 -m pip install -r ./docs/requirements.txt - - - name: Build documentation page - run: make html -C ./docs - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/_build/html \ No newline at end of file