diff --git a/.github/workflows/pages-deploy.yml b/.github/workflows/pages-deploy.yml deleted file mode 100644 index 79dd4f7..0000000 --- a/.github/workflows/pages-deploy.yml +++ /dev/null @@ -1,40 +0,0 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Pages - Deploy - -on: - push: - branches: gh-pages - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: false - -jobs: - deploy: - environment: - name: Pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: gh-pages - - - name: Setup - Pages - uses: actions/configure-pages@v5 - - - name: Upload - Artifacts - uses: actions/upload-pages-artifact@v3 - with: - path: '.' - - - name: Deploy - Pages - id: deployment - uses: actions/deploy-pages@v4