From 601559872549dfcfeaee1b00787b2337f2603ebd Mon Sep 17 00:00:00 2001 From: Holden Date: Fri, 19 Apr 2024 18:14:40 -0400 Subject: [PATCH] CI: Allow Docs Deploy on Manual Runs --- .github/workflows/docs_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs_deploy.yml b/.github/workflows/docs_deploy.yml index 6c5403aa62e..f76ad871771 100644 --- a/.github/workflows/docs_deploy.yml +++ b/.github/workflows/docs_deploy.yml @@ -44,7 +44,7 @@ jobs: retention-days: 1 deploy: - if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }} + if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }} needs: build runs-on: ubuntu-latest