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

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

commit 1bea5b0d1473c57cd2f969795919a5fc8470b0b2
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Jun 25 17:45:08 2022 +0200

    Remove selective checks from the "release workflow" (#24655)
    
    Missed that one too :(
    
    (cherry picked from commit 47f54b609983c6cb08553bb85245f2288deaf2dc)
---
 .github/workflows/release_dockerhub_image.yml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/release_dockerhub_image.yml 
b/.github/workflows/release_dockerhub_image.yml
index cd5fe6e9ce..3259759cac 100644
--- a/.github/workflows/release_dockerhub_image.yml
+++ b/.github/workflows/release_dockerhub_image.yml
@@ -51,9 +51,17 @@ jobs:
         with:
           persist-credentials: false
           submodules: recursive
+      - name: "Setup python"
+        uses: actions/setup-python@v2
+        with:
+          # We do not have output from selective checks yet, so we need to 
hardcode python
+          python-version: 3.7
+          cache: 'pip'
+          cache-dependency-path: ./dev/breeze/setup*
+      - run: ./scripts/ci/install_breeze.sh
       - name: Selective checks
         id: selective-checks
-        run: ./scripts/ci/selective_ci_checks.sh
+        run: breeze selective-check
   release-images:
     timeout-minutes: 120
     name: "Release images: ${{ github.event.inputs.airflowVersion }}, ${{ 
matrix.python-version }}"

Reply via email to