diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index cab1b477..de10fe5b 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -54,10 +54,10 @@ jobs: git diff --name-only HEAD^ HEAD >files.txt while IFS= read -r file; do if [[ $file != demos/python/sdk_wireless_camera_control* ]]; then - echo "{found_modified_python_file}={false}" >> $GITHUB_OUTPUT + echo "found_modified_python_file=false" >> "$GITHUB_OUTPUT" else echo "Found a Python SDK modified file" - echo "{found_modified_python_file}={true}" >> $GITHUB_OUTPUT + echo "found_modified_python_file=true" >> "$GITHUB_OUTPUT" break fi done