From 48edf9fbe21d4ad0aeccc262a0932e8ca7a472f6 Mon Sep 17 00:00:00 2001 From: Wesley Maxey <71408887+wmaxey@users.noreply.github.com> Date: Wed, 7 Feb 2024 14:16:18 -0800 Subject: [PATCH] Delete github pages workflow. --- .../deploy-documentation-github-pages.yml | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/deploy-documentation-github-pages.yml diff --git a/.github/workflows/deploy-documentation-github-pages.yml b/.github/workflows/deploy-documentation-github-pages.yml deleted file mode 100644 index 508764c5c..000000000 --- a/.github/workflows/deploy-documentation-github-pages.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy Documentation GitHub Pages - -on: - push: - branches: - - "main" - - # Trigger on request. - workflow_dispatch: - -jobs: - deploy-documentation-github-pages: - runs-on: ubuntu-latest - container: gpuci/cccl:cuda11.7.0-devel-ubuntu20.04-gcc9 - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Generate documentation markdown - run: ./docs/generate_markdown.bash --clean - - name: Deploy generated documentation markdown to gh-pages branch - uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./build_docs/github_pages - enable_jekyll: true - commit_message: "Deploy Documentation: ${{ github.event.head_commit.message }}"