From 9bae03137a8bcedcdb25bea8b51f59128ceeefe0 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Tue, 22 Nov 2022 17:17:01 +0100 Subject: [PATCH] Add CI step to run prepare provider documentation. (#27832) Adds CI step that was likely missing during refactoring when we run prepare-provider-documentation step to test that it is still working. We are running pretty much all our `breeze` commnd in CI even those that we are using for manual release management, just to make sure they are still working and that none of the refactorings break it. This is very reassuring that whenever you attempt to do the release, most likely the tools that we use for that are still working. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e391a3748430d..961fad71e5147 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -699,6 +699,9 @@ jobs: uses: ./.github/actions/prepare_breeze_and_image - name: "Cleanup dist files" run: rm -fv ./dist/* + - name: "Prepare provider documentation" + run: breeze release-management prepare-provider-documentation + if: matrix.package-format == 'wheel' - name: "Prepare provider packages: ${{matrix.package-format}}" run: breeze release-management prepare-provider-packages --version-suffix-for-pypi dev0 - name: "Prepare airflow package: ${{matrix.package-format}}"