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 c19f356f93f Move prepare-breeze to the begining of job in 
publish-docs-to-s3 (#50606)
c19f356f93f is described below

commit c19f356f93f21c70a3d39e10a8011bdd2994384c
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed May 14 16:43:34 2025 +0200

    Move prepare-breeze to the begining of job in publish-docs-to-s3 (#50606)
    
    One more place where we have to move breeze to the beginning of
    job after adding cleaning /mnt directory
---
 .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