Navigation Menu

Skip to content

Commit

Permalink
Using sed to remove release-v
Browse files Browse the repository at this point in the history
  • Loading branch information
LucienShui committed Oct 23, 2019
1 parent a770e12 commit ff95ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Expand Up @@ -63,7 +63,7 @@ function translateDockerTag() {
elif isOnMaster; then
TAG="latest"
elif isGitTag && uses "${INPUT_TAG_NAMES}"; then
TAG=$(echo ${GITHUB_REF} | sed -e "s/refs\/tags\///g")
TAG=$(echo ${GITHUB_REF} | sed -e "s/refs\/tags\///g" | sed -e "s/release-v//g")
elif isGitTag; then
TAG="latest"
elif isPullRequest; then
Expand Down

0 comments on commit ff95ce0

Please sign in to comment.