potiuk commented on code in PR #45408:
URL: https://github.com/apache/airflow/pull/45408#discussion_r1903271202
##########
.github/workflows/ci-image-checks.yml:
##########
@@ -276,8 +277,10 @@ jobs:
key: cache-docs-inventory-v1-${{ hashFiles('pyproject.toml') }}
id: restore-docs-inventory-cache
- name: "Building docs with ${{ matrix.flag }} flag"
+ env:
+ DOCS_LIST_AS_STRING: ${{ inputs.docs-list-as-string }}
run: >
- breeze build-docs ${{ inputs.docs-list-as-string }} ${{ matrix.flag
}}
+ breeze build-docs "$DOCS_LIST_AS_STRING" ${{ matrix.flag }}
Review Comment:
Same here - quoting will break the behaviour.
##########
.github/workflows/ci-image-checks.yml:
##########
@@ -339,9 +342,11 @@ jobs:
python: ${{ inputs.default-python-version }}
use-uv: ${{ inputs.use-uv }}
- name: "Publish docs"
+ env:
+ DOCS_LIST_AS_STRING: ${{ inputs.docs-list-as-string }}
run: >
breeze release-management publish-docs --override-versioned
--run-in-parallel
- ${{ inputs.docs-list-as-string }}
+ "$DOCS_LIST_AS_STRING"
Review Comment:
Here as well.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]