We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48dca5 commit a874dffCopy full SHA for a874dff
1 file changed
.github/actions/generate-catalogs/action.yml
@@ -41,7 +41,7 @@ runs:
41
run: |
42
python "$GITHUB_ACTION_PATH/catalogs_generator.py" \
43
${{ inputs.registry && format('--registry "{0}"', inputs.registry) || '' }} \
44
- ${{ inputs.image-types && format('--image-types "{0}"', inputs.image-types) || '' }} \
45
- ${{ inputs.distributions && format('--distributions "{0}"', inputs.distributions) || '' }} \
46
- ${{ inputs.regex && format('--regex "{0}"', inputs.regex) || '' }} \
+ ${{ inputs.image-types && format('--image-types {0}', inputs.image-types) || '' }} \
+ ${{ inputs.distributions && format('--distributions {0}', inputs.distributions) || '' }} \
+ ${{ inputs.regex && format('--regex \'{0}\'', inputs.regex) || '' }} \
47
--output-dir ${{ inputs.output-dir }}
0 commit comments