From 22f52bc4e7f2c9016981b7ccb9d20c20369eaef0 Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Sat, 18 May 2024 22:48:40 -0400 Subject: [PATCH] Remove broken pages --- .github/workflows/pages.yml | 41 ------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 8c2f2310..00000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Deploy docs to Pages - -on: - push: - branches: ['master'] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.3' - bundler-cache: true - - name: Build docs - run: bundle exec rake yard - - name: Set up Pages - uses: actions/configure-pages@v5 - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: doc - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4