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 f3c1d700835 [v3-0-test] Move preparing breeze/cleaning before cloning
airflow-site (#50592) (#50612)
f3c1d700835 is described below
commit f3c1d7008356dbd20adb074dd436aaa360a36a88
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed May 14 16:32:02 2025 +0200
[v3-0-test] Move preparing breeze/cleaning before cloning airflow-site
(#50592) (#50612)
Prepare breeze is now clearing /mnt directory and it was run after
the airflow-site repo has been cloned - so it cleaned it as well.
This PR moves cleaning to the beginning of the publish docs job
(cherry picked from commit 5772b4f5a88bd7e9536c7b193e89387d2b63146c)
---
.github/workflows/ci-image-checks.yml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/ci-image-checks.yml
b/.github/workflows/ci-image-checks.yml
index 855a0b75efe..a8535acfccb 100644
--- a/.github/workflows/ci-image-checks.yml
+++ b/.github/workflows/ci-image-checks.yml
@@ -331,6 +331,12 @@ jobs:
uses: actions/checkout@v4
with:
persist-credentials: false
+ - name: "Prepare breeze & CI image: ${{ inputs.default-python-version }}"
+ uses: ./.github/actions/prepare_breeze_and_image
+ with:
+ platform: ${{ inputs.platform }}
+ python: ${{ inputs.default-python-version }}
+ use-uv: ${{ inputs.use-uv }}
- name: "Download docs prepared as artifacts"
uses: actions/download-artifact@v4
with:
@@ -344,12 +350,6 @@ jobs:
run: >
git clone https://github.com/apache/airflow-site.git
/mnt/airflow-site/airflow-site &&
echo "AIRFLOW_SITE_DIRECTORY=/mnt/airflow-site/airflow-site" >>
"$GITHUB_ENV"
- - name: "Prepare breeze & CI image: ${{ inputs.default-python-version }}"
- uses: ./.github/actions/prepare_breeze_and_image
- with:
- platform: ${{ inputs.platform }}
- python: ${{ inputs.default-python-version }}
- use-uv: ${{ inputs.use-uv }}
- name: "Publish docs"
env:
DOCS_LIST_AS_STRING: ${{ inputs.docs-list-as-string }}