This is an automated email from the ASF dual-hosted git repository. gopidesu pushed a commit to branch fix-docs-publish-breeze-error in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 40a641edeebeb74a31a5017bc0335d514b28afcb Author: Pavan Kumar <[email protected]> AuthorDate: Mon Sep 29 10:45:44 2025 +0100 move disk cleanup to before image build --- .github/workflows/publish-docs-to-s3.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/publish-docs-to-s3.yml b/.github/workflows/publish-docs-to-s3.yml index d61653a6cf4..1b23993e191 100644 --- a/.github/workflows/publish-docs-to-s3.yml +++ b/.github/workflows/publish-docs-to-s3.yml @@ -93,17 +93,17 @@ jobs: # yamllint disable rule:line-length skip-write-to-stable-folder: ${{ inputs.skip-write-to-stable-folder && '--skip-write-to-stable-folder' || '' }} default-python-version: "3.10" - if: contains(fromJSON('[ - "ashb", - "eladkal", - "ephraimbuddy", - "jedcunningham", - "kaxil", - "pierrejeambrun", - "potiuk", - "utkarsharma2", - "bugraoz93" - ]'), github.event.sender.login) + # if: contains(fromJSON('[ + # "ashb", + # "eladkal", + # "ephraimbuddy", + # "jedcunningham", + # "kaxil", + # "pierrejeambrun", + # "potiuk", + # "utkarsharma2", + # "bugraoz93" + # ]'), github.event.sender.login) steps: - name: "Input parameters summary" shell: bash @@ -189,6 +189,9 @@ jobs: ref: ${{ inputs.ref }} fetch-depth: 0 fetch-tags: true + - name: "Free up disk space" + shell: bash + run: ./scripts/tools/free_up_disk_space.sh - name: "Apply patch commits if provided" run: | if [[ "${APPLY_COMMITS}" != "" ]]; then @@ -232,9 +235,6 @@ jobs: INCLUDE_COMMITS: ${{ startsWith(inputs.ref, 'providers') && 'true' || 'false' }} run: > breeze build-docs ${INCLUDE_DOCS} --docs-only - - name: "Free up disk space" - shell: bash - run: ./scripts/tools/free_up_disk_space.sh - name: "Checkout current version to run SBOM generation" uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with:
