From 45ed2930f40426eec3ecd21ab28ebeda16b0c279 Mon Sep 17 00:00:00 2001 From: Prince Roshan Date: Thu, 17 Oct 2024 19:44:32 +0530 Subject: [PATCH] remove unnecessary file --- .github/workflows/docs.yml | 36 ------------------------------------ requirements-dev.txt | 2 -- 2 files changed, 38 deletions(-) delete mode 100644 .github/workflows/docs.yml delete mode 100644 requirements-dev.txt diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 5bf639e..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Build and Deploy Docs - -on: - push: - branches: - - main - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: Install dependencies - run: | - pip install -r requirements-dev.txt - - - name: Build docs - run: mkdocs build - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./site - - - name: Get deployment URL - run: | - echo "Docs deployed to: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/" - - \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt deleted file mode 100644 index 57f3190..0000000 --- a/requirements-dev.txt +++ /dev/null @@ -1,2 +0,0 @@ -mkdocs==1.4.2 -mkdocs-material==9.1.6