ci: fix env context issue in conditionals
CI / Generate Certificates (push) Successful in 32s
CI / Backend CI (push) Failing after 6s
CI / E2E Tests (push) Has been skipped
CI / Frontend CI (push) Failing after 5s

This commit is contained in:
ramvignesh-b
2026-05-05 04:40:57 +05:30
parent 550b72f801
commit 708bb7ff5d
+1 -2
View File
@@ -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