Skip to content

Commit

Permalink
fix(action-precommit): BOM compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
JoffreyPlouvier committed Sep 29, 2023
1 parent e536d25 commit 0465c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/precommit/bom-compliance/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
- name: Build version name
id: build-version
run: |
if [[ ${{ inputs.version_name}} == "" ]]; then
if [[ "${{ inputs.version_name}}" == "" ]]; then
echo "version=${{ inputs.version_prefix }}${{ steps.extract_version.outputs.version_number }}" >> $GITHUB_OUTPUT
else
echo "version=${{ inputs.version_name }}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 0465c43

Please sign in to comment.