Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
fix: copy paste issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Jun 13, 2021
1 parent c61780d commit 88f8f76
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ fi

if [[ $VERSION =~ $SEMVER_REGEX ]];
then
echo "::set-output name=VERSION::echo $(echo $VERSION | sed 's/v\(.*\)/\1/')"
FINALVERSION=$(echo $VERSION | sed 's/v\(.*\)/\1/')
echo "Version to build is $FINALVERSION"
echo "::set-output name=VERSION::$FINALVERSION"
exit 0
else
exit 1
Expand Down

0 comments on commit 88f8f76

Please sign in to comment.