Skip to content

Commit a874dff

Browse files
committed
chore: fix quotes
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
1 parent b48dca5 commit a874dff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/generate-catalogs/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
run: |
4242
python "$GITHUB_ACTION_PATH/catalogs_generator.py" \
4343
${{ 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) || '' }} \
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) || '' }} \
4747
--output-dir ${{ inputs.output-dir }}

0 commit comments

Comments
 (0)