This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new bcf1630c4d0 [v3-0-test] Move prepare-breeze to the begining of job in 
publish-docs-to-s3 (#50606) (#50616)
bcf1630c4d0 is described below

commit bcf1630c4d07c268ed3c4515dddbdec00477fc43
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 14 15:46:10 2025 +0100

    [v3-0-test] Move prepare-breeze to the begining of job in 
publish-docs-to-s3 (#50606) (#50616)
    
    One more place where we have to move breeze to the beginning of
    job after adding cleaning /mnt directory
    (cherry picked from commit c19f356f93f21c70a3d39e10a8011bdd2994384c)
    
    Co-authored-by: Jarek Potiuk <ja...@potiuk.com>
---
 .github/workflows/publish-docs-to-s3.yml | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/publish-docs-to-s3.yml 
b/.github/workflows/publish-docs-to-s3.yml
index 7f9a104279f..748a466cf8c 100644
--- a/.github/workflows/publish-docs-to-s3.yml
+++ b/.github/workflows/publish-docs-to-s3.yml
@@ -179,8 +179,12 @@ jobs:
         uses: actions/checkout@v4
         with:
           persist-credentials: false
-      - name: "Prepare and cleanup runner"
-        run: ./scripts/ci/prepare_and_cleanup_runner.sh
+      - name: "Prepare breeze & CI image: 3.9"
+        uses: ./.github/actions/prepare_breeze_and_image
+        with:
+          platform: "linux/amd64"
+          python: 3.9
+          use-uv: true
       - name: "Checkout ${{ inputs.ref }}"
         run: |
           git clone https://github.com/apache/airflow.git 
"${AIRFLOW_ROOT_PATH}"
@@ -200,12 +204,6 @@ jobs:
         run: |
           sudo mkdir -p /mnt/airflow-site && sudo chown -R "${USER}" 
/mnt/airflow-site
            echo "AIRFLOW_SITE_DIRECTORY=/mnt/airflow-site/" >> "$GITHUB_ENV"
-      - name: "Prepare breeze & CI image: 3.9"
-        uses: ./.github/actions/prepare_breeze_and_image
-        with:
-          platform: "linux/amd64"
-          python: 3.9
-          use-uv: true
       - name: "Publish docs to tmp directory"
         env:
           INCLUDE_DOCS: ${{ needs.build-info.outputs.include-docs }}

Reply via email to