Skip to content

Commit

Permalink
build: fix issue with outputs in semantic-release action
Browse files Browse the repository at this point in the history
  • Loading branch information
mverkerk-godaddy committed Apr 27, 2024
1 parent 152a994 commit db39d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/semantic/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
fi
echo "new_release_published=`if (grep -q 'The next release version is' release.output); then echo true; else echo false; fi`" >> $GITHUB_OUTPUT
echo "new_release_version=`grep 'The next release version is' release.output | sed -E 's/.* ([[:digit:].]+)$/\1/'`" >> $GITHUB_OUTPUT
echo "new_release_version=`if (grep 'The next release version is' release.output); then grep 'The next release version is' release.output | sed -E 's/.* ([[:digit:].]+)$/\1/'; else echo none; fi`" >> $GITHUB_OUTPUT
- name: Update job summary after semantic-release
if: ${{ inputs.add-summary == 'true' }}
Expand Down

0 comments on commit db39d8c

Please sign in to comment.