Skip to content

Commit

Permalink
fix(ci): Use correct ENV value for production (#4237)
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 authored Jun 26, 2024
1 parent a3bae58 commit 81753ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/e2e-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ runs:
env:
E2E_TEST_TOKEN: ${{ inputs.e2e_test_token }}
SLACK_TOKEN: ${{ inputs.slack_token }}
ENV: ${{ inputs.environment }}
ENV: ${{ inputs.environment == 'production' && 'prod' || inputs.environment }}
GITHUB_ACTION_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

0 comments on commit 81753ba

Please sign in to comment.