Quote envvar to match documentation

This commit is contained in:
Arun 2024-01-22 17:34:46 -08:00
Родитель 51c8ded24b
Коммит 9672545585
Не найден ключ, соответствующий данной подписи
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/acceptance.yml поставляемый
Просмотреть файл

@ -44,11 +44,11 @@ jobs:
> diff.txt
# If the diff file is not empty, it has changes.
[ -s diff.txt ] && echo "has_change=true" >> $GITHUB_OUTPUT || echo "has_change=false" >> $GITHUB_OUTPUT
[ -s diff.txt ] && echo "has_change=true" >> "$GITHUB_OUTPUT" || echo "has_change=false" >> "$GITHUB_OUTPUT"
- name: set has_change to true for push to main/master
if: github.event_name == 'push'
run: echo "has_change=true" >> $GITHUB_OUTPUT
run: echo "has_change=true" >> "$GITHUB_OUTPUT"
acceptance-suite:
needs: changes