From d529feaa05623cb20aefd5226f20bd5e3fa77cb0 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Wed, 10 Jan 2024 18:24:11 -0700 Subject: [PATCH] add retry to upstream-dev-ci.yml --- .github/workflows/upstream-dev-ci.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/upstream-dev-ci.yml b/.github/workflows/upstream-dev-ci.yml index 6528f4d78..bf7f4231c 100644 --- a/.github/workflows/upstream-dev-ci.yml +++ b/.github/workflows/upstream-dev-ci.yml @@ -38,6 +38,13 @@ jobs: conda info conda list - name: make html - working-directory: ./docs - run: | - make html + uses: nick-fields/retry@v2 + with: + timeout_minutes: 40 + max_attempts: 3 + command: | + eval "$(micromamba shell hook --shell bash)" + micromamba activate + micromamba activate geocat-examples + cd docs + make html