Skip to content

Commit

Permalink
Trying to make boolean imput work (attempt number 4326).
Browse files Browse the repository at this point in the history
  • Loading branch information
Jardo-51 committed May 6, 2024
1 parent 5bf1dad commit 9c4fb8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:
- name: Enforce branch version
id: enforce-branch-version-step
if: ${{ (inputs.enforce-branch-version == 'true') && (steps.needs-branch-version.outputs.needs == 'true') }} # step outputs are always strings
if: ${{ (inputs.enforce-branch-version == true) && (steps.needs-branch-version.outputs.needs == 'true') }} # step outputs are always strings
shell: bash
run: |
versionRegexp='^[0-9]+\.[0-9]+\.[0-9].*-[0-9a-zA-Z]+-SNAPSHOT$'
Expand Down

0 comments on commit 9c4fb8f

Please sign in to comment.