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 f877a14c4c7c863a2259c7af780f5ae6038469c4 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..a1f1957f628 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 @@ -179,6 +179,9 @@ jobs: with: persist-credentials: false path: current-version + - name: "Free up disk space" + shell: bash + run: ./scripts/tools/free_up_disk_space.sh # We are checking repo for both - breeze and docs from the ref provided as input # This will take longer as we need to rebuild CI image and it will not use cache # but it will build the CI image from the version of Airflow that is used to check out things @@ -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:
