Skip to content

Commit 7b1ffc8

Browse files
authored
Allow users to specify the organization name
1 parent 66b023b commit 7b1ffc8

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
@@ -23,7 +23,7 @@ inputs:
2323
required: false
2424
default: '.'
2525
name:
26-
description: 'Name of image'
26+
description: 'Name of image, including the organization (e.g. "opensciencegrid/image")'
2727
required: false
2828
default: ''
2929

@@ -37,7 +37,7 @@ runs:
3737
run: |
3838
if [[ -n ${{ inputs.name }} ]]; then
3939
# A name was specified
40-
IMAGE_NAME=$GITHUB_REPOSITORY_OWNER/${{ inputs.name }}
40+
IMAGE_NAME=${{ inputs.name }}
4141
elif [[ ${{ inputs.context }} == "." ]] || \
4242
[[ ${{ inputs.context }} == "./" ]]; then
4343
# Try to guess the image name from our docker repo naming conventions

0 commit comments

Comments
 (0)