Skip to content

Commit

Permalink
Fix dry-run evaluation in if condition (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisherking authored Mar 25, 2024
1 parent c8b0864 commit 7148928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-action-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
id: check_branch_behind
uses: "smartlyio/github-actions@check-branch-behind-v1"
with:
is_base_ref: ${{ !inputs.dry_run }}
is_base_ref: ${{ inputs.dry_run == 'false' }}
remote_update: true
git_default_branch: "${{ steps.get_base_branch.outputs.git_base_branch }}"
- name: Create release
Expand Down

0 comments on commit 7148928

Please sign in to comment.