Merge pull request #3 from jbpaux/main

Add quotes for inputs and output paths as they can contain spaces
This commit is contained in:
Fernando de Oliveira 2022-06-18 14:17:43 -03:00 коммит произвёл GitHub
Родитель f7ed8e545f d29a809847
Коммит d2a88e5c71
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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