From 708bb7ff5d7e0a79063037c402fce0b32c3839c8 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Tue, 5 May 2026 04:40:57 +0530 Subject: [PATCH] ci: fix env context issue in conditionals --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e81e7c5..cc09d51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,8 +140,7 @@ jobs: name: E2E Tests runs-on: ubuntu-latest needs: setup-environment - # Skipping on Gitea pushes until I figure out caching - if: ${{ env.IS_GITHUB == 'true' || github.event_name == 'pull_request' }} + if: ${{ github.server_url == 'https://github.com' || github.event_name == 'pull_request' }} steps: - uses: actions/checkout@v4