From f5356c0fd41d632a1946226515ec8675d8e09986 Mon Sep 17 00:00:00 2001 From: Tek Raj Chhetri <52251022+tekrajchhetri@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:48:48 -0400 Subject: [PATCH] Delete .github/deploy.yml --- .github/deploy.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/deploy.yml diff --git a/.github/deploy.yml b/.github/deploy.yml deleted file mode 100644 index bef636c..0000000 --- a/.github/deploy.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Deploy Jupyter Book to GitHub Pages - -on: - push: - branches: - - main - - docs #temp to be removed upon merge - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.8' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r ./docs/requirements.txt - pip install jupyter-book - - - name: Build Jupyter Book - run: jupyter-book build ./docs/ - - - name: Deploy to GitHub Pages - if: github.ref == 'refs/heads/main' - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.TOKEN_DOCS_BRAINKB }} - publish_dir: ./docs/_build/html -