Skip to content

Commit

Permalink
Trim any newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
cicdguy committed Nov 16, 2023
1 parent d6ca1df commit 98acc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
DESC_DEV_VERSION=$(echo $DESC_VERSION | awk -F '.' '{print $NF}')
echo "NEWS.md version: $NEWS_VERSION"
echo "DESCRIPTION version: $DESC_VERSION"
if [[ "${DESC_VERSION}" == "${NEWS_VERSION}" ]]
if [ "$DESC_VERSION" == "$NEWS_VERSION" ]
then {
echo "NEWS.md and DESCRIPTION have the same version 🎉"
exit 0
Expand Down

0 comments on commit 98acc32

Please sign in to comment.