From 7de51ae9c89583f43b06609d6740c21648e6017a Mon Sep 17 00:00:00 2001 From: Nate Ferrell Date: Mon, 10 Jun 2024 12:56:03 -0400 Subject: [PATCH] feat: #comment removed build/deploy interdependency for doc pipeline --- .github/workflows/docs-build-and-deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs-build-and-deploy.yml b/.github/workflows/docs-build-and-deploy.yml index 8e0c73f..bbd5ae6 100644 --- a/.github/workflows/docs-build-and-deploy.yml +++ b/.github/workflows/docs-build-and-deploy.yml @@ -14,6 +14,7 @@ env: jobs: build: name: Build documentation + needs: [] runs-on: ubuntu-latest if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref != 'refs/heads/main') @@ -34,7 +35,7 @@ jobs: deploy: name: Deploy documentation - needs: build + needs: [] runs-on: ubuntu-latest if: github.event_name == 'push' && github.ref == 'refs/heads/main'