From ee483d22f823e14be0d5ab22b7253e8f85c11ea8 Mon Sep 17 00:00:00 2001 From: Vidhan Bhonsle Date: Fri, 3 Jul 2026 21:14:23 +0530 Subject: [PATCH] Use unique GitHub Pages artifact name --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5d5ffeb6d13..0743ccfe3f3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -43,6 +43,10 @@ jobs: uses: actions/upload-pages-artifact@v3 with: path: build + name: github-pages-${{ github.run_id }}-${{ github.run_attempt }} + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + with: + artifact_name: github-pages-${{ github.run_id }}-${{ github.run_attempt }} \ No newline at end of file