From 765bcd4b0fda99ce1a425ab0510e52e19d1fb146 Mon Sep 17 00:00:00 2001 From: Twinki Date: Sun, 29 Sep 2024 02:29:23 -0400 Subject: [PATCH] Remove old workflow --- .github/workflows/pages-deploy.yml | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/pages-deploy.yml 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