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

Commit e6d705f

Browse files
Merge pull request #1 from splunk/test/remove-prefix-v
fix: remove prefix v from version
2 parents 0481a0c + 889703a commit e6d705f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ else
3030
if [[ $GITHUB_EVENT_NAME != 'pull_request' ]];
3131
then
3232
echo this is not a release build and NOT PR RUNID + run ID
33-
VERSION=v0.0.${GITHUB_RUN_ID}
33+
VERSION=0.0.${GITHUB_RUN_ID}
3434
else
3535
echo this is not a release build and is a PR use run ID
36-
VERSION=v0.${INPUT_PRNUMBER}.${GITHUB_RUN_ID}
36+
VERSION=0.${INPUT_PRNUMBER}.${GITHUB_RUN_ID}
3737
fi
3838
fi
3939
FINALVERSION=$(echo $VERSION | sed 's/v?\(.*\)/\1/')

0 commit comments

Comments
 (0)