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.
2 parents fc2c6a6 + 9f3aabb commit 56f59b3Copy full SHA for 56f59b3
action.yml
@@ -114,10 +114,10 @@ runs:
114
[[ ${{ inputs.context }} == "./" ]]; then
115
# Try to guess the image name from our docker repo naming conventions
116
# E.g., opensciencegrid/docker-frontier-squid
117
- IMAGE_NAME=${GITHUB_REPOSITORY/opensciencegrid\/docker-//}-${DEFAULT_TAG}
+ IMAGE_NAME=${GITHUB_REPOSITORY/opensciencegrid\/docker-//}:${DEFAULT_TAG}
118
elif [[ -d ${{ inputs.context }} ]]; then
119
# Assume that the containing dir is the image name
120
- IMAGE_NAME=$(basename ${{ inputs.context }})-${DEFAULT_TAG}
+ IMAGE_NAME=$(basename ${{ inputs.context }}):${DEFAULT_TAG}
121
else
122
echo "No output_image provided and ${{ inputs.context }} is not a directory"
123
exit 1
0 commit comments