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 66b023b commit 7b1ffc8Copy full SHA for 7b1ffc8
action.yml
@@ -23,7 +23,7 @@ inputs:
23
required: false
24
default: '.'
25
name:
26
- description: 'Name of image'
+ description: 'Name of image, including the organization (e.g. "opensciencegrid/image")'
27
28
default: ''
29
@@ -37,7 +37,7 @@ runs:
37
run: |
38
if [[ -n ${{ inputs.name }} ]]; then
39
# A name was specified
40
- IMAGE_NAME=$GITHUB_REPOSITORY_OWNER/${{ inputs.name }}
+ IMAGE_NAME=${{ inputs.name }}
41
elif [[ ${{ inputs.context }} == "." ]] || \
42
[[ ${{ inputs.context }} == "./" ]]; then
43
# Try to guess the image name from our docker repo naming conventions
0 commit comments