Skip to content

Commit

Permalink
Fix input being passed as string when merging feature branches (respo…
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarvarela authored Nov 27, 2024
1 parent e4550c6 commit 2626138
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,5 @@ jobs:
secrets: inherit
with:
environment: staging
force-deploy: ${{ inputs.force-deploy }}
# inputs from the workflow_dispatch event come as strings even if they are explicitly defined as boolean
force-deploy: ${{ inputs.force-deploy == 'true' }}

0 comments on commit 2626138

Please sign in to comment.