This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new e2f0371fc6c Fix SBOM generation env variables and parameters: (#52836)
e2f0371fc6c is described below
commit e2f0371fc6ced55688c0eba17bbc9226f53e9fd0
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Jul 3 23:45:43 2025 +0200
Fix SBOM generation env variables and parameters: (#52836)
* adding GITHUB_TOKEN
* move FORCE parameter to env var
---
.github/workflows/publish-docs-to-s3.yml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/publish-docs-to-s3.yml
b/.github/workflows/publish-docs-to-s3.yml
index 78d3f25aef6..53bf5c8dc06 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -172,9 +172,11 @@ jobs:
env:
AIRFLOW_VERSION: ${{ needs.build-info.outputs.airflow-version }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ PYTHON_VERSION: ${{ needs.build-info.outputs.default-python-version
}}
+ FORCE: "true"
run: >
- breeze sbom update-sbom-information --airflow-version
${AIRFLOW_VERSION} \
- --force --all-combinations --run-in-parallel --airflow-root-path
"${GITHUB_WORKSPACE}"
+ breeze sbom update-sbom-information --airflow-version
${AIRFLOW_VERSION}
+ --all-combinations --run-in-parallel --airflow-root-path
"${GITHUB_WORKSPACE}"
if: inputs.build-sboms == 'true'
- name: Check disk space available