Skip to content

Commit 0f439af

Browse files
committed
Ensure that the registry is specified in the tag
1 parent 555aca1 commit 0f439af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,13 @@ runs:
5050
env:
5151
REPO: ${{ inputs.repo }}
5252
OSG_SERIES: ${{ inputs.osg_series }}
53+
REGISTRY: ${{ inputs.registry_url}}
5354
shell: bash
5455
run: |
55-
docker_repo=opensciencegrid/${{ steps.generate-image-name.outputs.image }}
56+
docker_repo="$REGISTRY/opensciencegrid/${{ steps.generate-image-name.outputs.image }}"
5657
tag_list=()
5758
for image_tag in "$OSG_SERIES-$REPO" "$OSG_SERIES-$REPO-$(date +%Y%m%d-%H%M)"; do
58-
tag_list+=("$docker_repo":"$image_tag")
59+
tag_list+=($docker_repo":"$image_tag")
5960
done
6061
IFS=,
6162
echo "::set-output name=taglist::${tag_list[*]}"

0 commit comments

Comments
 (0)