From 91a84afdb050edd12c9c20663584fd421f2df488 Mon Sep 17 00:00:00 2001 From: Sean Colsen Date: Tue, 8 Oct 2024 10:45:39 -0400 Subject: [PATCH] Remove GH action to auto-deploy docs --- .github/workflows/deploy-docs.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml deleted file mode 100644 index c20fa7ad23..0000000000 --- a/.github/workflows/deploy-docs.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: deploy-docs -on: - push: - branches: - - master -permissions: - contents: write -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: 3.11 - - run: pip install -r ./docs/requirements.txt - - working-directory: ./docs - run: mkdocs gh-deploy --strict --force