From b53dce70ba5fb35d800d53d0e1b5a7b83e0d628d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Sep 2025 18:28:14 +0000 Subject: [PATCH 1/2] Initial plan From 561b7f812c516e08c46063605c1b9a33684b4c0e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Sep 2025 18:41:27 +0000 Subject: [PATCH 2/2] Fix GitHub Pages deployment by removing conflicting Setup Pages action Co-authored-by: rezwana-karim <126201034+rezwana-karim@users.noreply.github.com> --- .github/workflows/deploy-github-pages.yml | 55 ----------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/deploy-github-pages.yml diff --git a/.github/workflows/deploy-github-pages.yml b/.github/workflows/deploy-github-pages.yml deleted file mode 100644 index 1655382..0000000 --- a/.github/workflows/deploy-github-pages.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: [ main ] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: false - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - - - name: Setup Pages - uses: actions/configure-pages@v4 - with: - static_site_generator: next - - - name: Install dependencies - run: npm ci - - - name: Build with Next.js - run: npm run build:github-pages - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./out - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file