From ba86d8f70b35eaf555d2f3d136265643409095eb Mon Sep 17 00:00:00 2001 From: Shay Carter Date: Mon, 22 Mar 2021 14:08:32 -0700 Subject: [PATCH] Update github workflow: -added back in the branch requirement for building the website and switched it from "master" to "main" since we renamed that branch --- .github/workflows/sphinx_build_deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sphinx_build_deploy.yml b/.github/workflows/sphinx_build_deploy.yml index a62510a..e786273 100644 --- a/.github/workflows/sphinx_build_deploy.yml +++ b/.github/workflows/sphinx_build_deploy.yml @@ -2,6 +2,8 @@ name: Publish Sphinx Built Webpages to Github Pages on: push: + branches: + - main paths: - 'docs/**' - 'examples/**'