From 1bea5b0d1473c57cd2f969795919a5fc8470b0b2 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Sat, 25 Jun 2022 17:45:08 +0200 Subject: [PATCH] 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 cd5fe6e9ce08d..3259759cac7d4 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 }}"