Skip to content

Commit

Permalink
chore(ci): TEST_MODE=true for PRs only (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Aug 19, 2024
1 parent c9651cd commit 7ea2c9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/.deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ jobs:
parameters:
-p TAG=${{ inputs.tag }}
-p ZONE=${{ inputs.target }}
${{ inputs.target == 'test' && '-p TEST_MODE=false' || '-p TEST_MODE=true' }}
${{ github.event_name == 'pull_request' && '-p TEST_MODE=true' || '' }}


- name: Override OpenShift version
if: github.event_name == 'pull_request'
Expand Down

0 comments on commit 7ea2c9e

Please sign in to comment.