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