fix: master builds are failing while trying to push report to cypress (#33124)

This commit is contained in:
Maxime Beauchemin
2025-04-14 10:53:02 -07:00
committed by GitHub
parent 7b9ebbe735
commit c1eeb63d89
2 changed files with 3 additions and 3 deletions

View File

@@ -50,8 +50,8 @@ jobs:
PYTHONPATH: ${{ github.workspace }}
REDIS_PORT: 16379
GITHUB_TOKEN: ${{ github.token }}
# use the dashboard feature when running manually OR merging to master
USE_DASHBOARD: ${{ github.event.inputs.use_dashboard == 'true'|| (github.ref == 'refs/heads/master' && 'true') || 'false' }}
# Only use dashboard when explicitly requested via workflow_dispatch
USE_DASHBOARD: ${{ github.event.inputs.use_dashboard == 'true' || 'false' }}
services:
postgres:
image: postgres:16-alpine