From d9cad1260d65321e722ff05daf9df215e4c61443 Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Fri, 7 Nov 2025 17:07:10 -0500 Subject: [PATCH] chore: disable failing e2e check which prevents deploy See https://github.com/logseq/logseq/actions/runs/19182048455/job/54840890964 which fails to download artifact even though 87ad3983993629bfe0ff8b9183403c9270e48d65 e2e passes --- .github/workflows/deploy-db-test-pages.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-db-test-pages.yml b/.github/workflows/deploy-db-test-pages.yml index 8e7fec6b41..fd911f8b80 100644 --- a/.github/workflows/deploy-db-test-pages.yml +++ b/.github/workflows/deploy-db-test-pages.yml @@ -20,12 +20,13 @@ jobs: path: . continue-on-error: true - - name: Check E2E success - run: | - if [ ! -f e2e-success.txt ]; then - echo "❌ E2E tests did not succeed — aborting release." - exit 1 - fi + # FIXME: download not found for successful e2e + # - name: Check E2E success + # run: | + # if [ ! -f e2e-success.txt ]; then + # echo "❌ E2E tests did not succeed — aborting release." + # exit 1 + # fi - uses: actions/checkout@v4