Skip to content

Commit

Permalink
Merge pull request #9 from djpm05/patch-1
Browse files Browse the repository at this point in the history
Update entrypoint parsing
  • Loading branch information
Roang-zero1 authored Jun 27, 2022
2 parents 5cf058d + 9df8061 commit 14345b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set_tag() {
if [ -n "${INPUT_CREATED_TAG}" ]; then
TAG=${INPUT_CREATED_TAG}
else
TAG="$(echo ${GITHUB_REF} | grep tags | grep -o "[^/]*$" || true)"
TAG="$(echo ${GITHUB_REF} | grep tags | sed --regexp-extended 's/^\w+\/\w+\///g' || true)"
fi
}

Expand Down

0 comments on commit 14345b6

Please sign in to comment.