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 9517c4d commit 555aca1Copy full SHA for 555aca1
action.yml
@@ -54,8 +54,8 @@ runs:
54
run: |
55
docker_repo=opensciencegrid/${{ steps.generate-image-name.outputs.image }}
56
tag_list=()
57
- for image_tag in "$REPO" "$REPO-$(date +%Y%m%d-%H%M)"; do
58
- tag_list+=$docker_repo:$image_tag
+ for image_tag in "$OSG_SERIES-$REPO" "$OSG_SERIES-$REPO-$(date +%Y%m%d-%H%M)"; do
+ tag_list+=("$docker_repo":"$image_tag")
59
done
60
IFS=,
61
echo "::set-output name=taglist::${tag_list[*]}"
0 commit comments