From 128668d88af9abba700567dfbe7501acf7f9e463 Mon Sep 17 00:00:00 2001 From: Ali Abdalla Date: Tue, 9 May 2023 23:52:13 +0400 Subject: [PATCH] Fix create version docs action (#4130) * define version instead of upgrading * add sleep --------- Co-authored-by: Abubakar Abid --- .github/workflows/build-version-docs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-version-docs.yml b/.github/workflows/build-version-docs.yml index 13a4e900b5094..de003e92c57f2 100644 --- a/.github/workflows/build-version-docs.yml +++ b/.github/workflows/build-version-docs.yml @@ -33,8 +33,10 @@ jobs: run: python -m pip install -r website/homepage/requirements.txt - name: Pin httpx, httpcore, and h11 run: pip install h11==0.12.0 httpcore==0.15.0 httpx==0.23.0 + - name: Wait 5 min + run: sleep 300 - name: Install gradio - run: python -m pip install gradio -U + run: python -m pip install gradio==$(cat gradio/version.txt) - name: Build Docs run: cd website/homepage && python build-version-docs.py - name: Create Pull Request