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 555aca1 commit 0f439afCopy full SHA for 0f439af
action.yml
@@ -50,12 +50,13 @@ runs:
50
env:
51
REPO: ${{ inputs.repo }}
52
OSG_SERIES: ${{ inputs.osg_series }}
53
+ REGISTRY: ${{ inputs.registry_url}}
54
shell: bash
55
run: |
- docker_repo=opensciencegrid/${{ steps.generate-image-name.outputs.image }}
56
+ docker_repo="$REGISTRY/opensciencegrid/${{ steps.generate-image-name.outputs.image }}"
57
tag_list=()
58
for image_tag in "$OSG_SERIES-$REPO" "$OSG_SERIES-$REPO-$(date +%Y%m%d-%H%M)"; do
- tag_list+=("$docker_repo":"$image_tag")
59
+ tag_list+=($docker_repo":"$image_tag")
60
done
61
IFS=,
62
echo "::set-output name=taglist::${tag_list[*]}"
0 commit comments