From 0dc58cf686ce4430af26ed716779ef936b54ca04 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:54:43 -0800 Subject: [PATCH] Update GitHub Pages artifact naming in CI workflow --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09f26ef78..e6133475d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,9 +114,12 @@ jobs: - uses: actions/upload-pages-artifact@v4 with: path: site + name: github-pages-${{ github.run_id }}-${{ github.run_attempt }} - uses: actions/deploy-pages@v4 if: github.event_name == 'push' && github.ref == 'refs/heads/main' id: deployment + with: + artifact_name: github-pages-${{ github.run_id }}-${{ github.run_attempt }} tests-backend: name: "Backend Tests (Python ${{ matrix.python-version }})" runs-on: ubuntu-24.04