Add quotes for inputs and output paths as they can contain spaces

This commit is contained in:
Jean-Benoit Paux 2022-06-16 11:44:29 +02:00
Родитель f7ed8e545f
Коммит d29a809847
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -18,5 +18,5 @@ inputs:
runs:
using: composite
steps:
- run: az bicep build --file ${{ inputs.bicepFilePath }} --outfile ${{ inputs.outputFilePath }}
- run: az bicep build --file "${{ inputs.bicepFilePath }}" --outfile "${{ inputs.outputFilePath }}"
shell: bash