From 0a8872393e2db8602901be1447a238cf8779a9bb Mon Sep 17 00:00:00 2001 From: "Burke, Brian" Date: Mon, 11 Mar 2024 10:29:09 -0400 Subject: [PATCH 1/2] Allow manual action --- .github/workflows/deploy.yml | 10 +++++++++- .gitignore | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a0c8001..929671f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,5 +1,13 @@ name: deploy gh-pages -on: [push] +on: + push: + branches: [main] + workflow_dispatch: + inputs: + debug_enabled: + description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' + required: false + default: false jobs: build: runs-on: ubuntu-latest diff --git a/.gitignore b/.gitignore index 5ba249d..60fe338 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ docs/build *.swp +docs/source/images/people/.DS_Store From fd14a133c6e5d0c48f19fbc0c72df53107d5226d Mon Sep 17 00:00:00 2001 From: "Burke, Brian" Date: Mon, 11 Mar 2024 10:34:28 -0400 Subject: [PATCH 2/2] Update deploy.yml --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 929671f..8bd2b0d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,6 +2,8 @@ name: deploy gh-pages on: push: branches: [main] + pull_request: + branches: [main] workflow_dispatch: inputs: debug_enabled: