We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d42d3f commit 0041b47Copy full SHA for 0041b47
action.yml
@@ -39,7 +39,7 @@ runs:
39
IFS=,
40
echo "::set-output name=taglist::${tag_list[*]}"
41
else
42
- tag_list=${{ inputs.tag_list }}
+ tag_list=$(echo ${{ inputs.tag_list }} | sed -E "s/([^,]+)/${{ inputs.registry_url }}\/\1/g")
43
echo "::set-output name=taglist::$tag_list"
44
fi
45
shell: bash
0 commit comments