From 0169799dfbdb0c1419e4241a3778448ac64a791d Mon Sep 17 00:00:00 2001 From: "Gregory M. Kapfhammer" Date: Sat, 5 Oct 2024 18:45:05 -0400 Subject: [PATCH] chore: Delete the mkdocs.yml file as no longer building a web site and this GitHub Actions workflow is no longer needed. --- .github/workflows/mkdocs.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/mkdocs.yml diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml deleted file mode 100644 index f8d62647..00000000 --- a/.github/workflows/mkdocs.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This GitHub Actions workflow contains one job: -# -- Build MKDocs uses the latest Ubuntu image and Python 3.9 to build -# the MKDocs website using the latest Poetry version. - -name: Build MKDocs - -on: - push: - branches: - - main - -jobs: - mkdocs: - name: MkDocs - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Setup Python 3.9 - uses: actions/setup-python@v2 - id: setup-python - with: - python-version: 3.9 - - name: Install Poetry - uses: Gr1N/setup-poetry@v8 - - name: Setup Poetry - run: | - poetry config virtualenvs.create true - poetry config virtualenvs.in-project true - poetry env info - - name: Install dependencies - run: poetry install --no-interaction --no-ansi - - name: Update MkDocs - run: poetry run task mkdocs \ No newline at end of file