Skip to content

Commit f518aa4

Browse files
committed
fix condition
1 parent 21cc16e commit f518aa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
- name: Deploy Reflex App
4848
run: |
4949
cd ${{ inputs.app_directory }}
50-
if [[ "${{ github.event.inputs.dry_run }}" == "true" ]]; then
50+
if [[ "${{ inputs.dry_run }}" == "true" ]]; then
5151
echo "Dry run enabled, skipping reflex deployv2."
5252
else
5353
reflex deployv2 --token ${{ inputs.auth_token }} --project ${{ inputs.project_id }} --no-interactive ${{ inputs.extra_args }}

0 commit comments

Comments
 (0)