Skip to content

Commit 0041b47

Browse files
author
Jack Yuan
committed
Prepend registry url to each tag in user defined tag list (SOFTWARE-4832)
1 parent 0d42d3f commit 0041b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ runs:
3939
IFS=,
4040
echo "::set-output name=taglist::${tag_list[*]}"
4141
else
42-
tag_list=${{ inputs.tag_list }}
42+
tag_list=$(echo ${{ inputs.tag_list }} | sed -E "s/([^,]+)/${{ inputs.registry_url }}\/\1/g")
4343
echo "::set-output name=taglist::$tag_list"
4444
fi
4545
shell: bash

0 commit comments

Comments
 (0)