Skip to content

Commit 555aca1

Browse files
committed
Fix tag list generation
1 parent 9517c4d commit 555aca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ runs:
5454
run: |
5555
docker_repo=opensciencegrid/${{ steps.generate-image-name.outputs.image }}
5656
tag_list=()
57-
for image_tag in "$REPO" "$REPO-$(date +%Y%m%d-%H%M)"; do
58-
tag_list+=$docker_repo:$image_tag
57+
for image_tag in "$OSG_SERIES-$REPO" "$OSG_SERIES-$REPO-$(date +%Y%m%d-%H%M)"; do
58+
tag_list+=("$docker_repo":"$image_tag")
5959
done
6060
IFS=,
6161
echo "::set-output name=taglist::${tag_list[*]}"

0 commit comments

Comments
 (0)