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


The following commit(s) were added to refs/heads/fix-docs-publish-breeze-error 
by this push:
     new 0c7dbcbd33f move disk cleanup to before image build
0c7dbcbd33f is described below

commit 0c7dbcbd33f17eaf8c6caef5dada4cfedf277015
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 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/publish-docs-to-s3.yml 
b/.github/workflows/publish-docs-to-s3.yml
index d61653a6cf4..d0abee6c13b 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -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:

Reply via email to