From 309e2790461459d627f6410d6581b29a4ae8b82e Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Sat, 30 Sep 2023 23:09:31 -0500 Subject: [PATCH] [CI] Wait for docs deploy run to finish --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94521f6a..1a2b48a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,12 +105,12 @@ jobs: if: github.ref_type == 'branch' env: GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} - run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }} + run: gh workflow run watch deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }} - name: Dispatch (full build) if: github.ref_type == 'tag' env: GH_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} - run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) + run: gh workflow run watch deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) log_complete: name: Log Complete needs: [prerequisites, deploy_artifacts, deploy_docs_antora]