From 234a05a70fa51d20f84a83fd421d8dab25f70fa5 Mon Sep 17 00:00:00 2001 From: Brian Burke <97243450+bburke38@users.noreply.github.com> Date: Mon, 25 Mar 2024 10:15:30 -0400 Subject: [PATCH] Manual action (#7) * Allow manual action * Update deploy.yml --- .github/workflows/deploy.yml | 12 +++++++++++- .gitignore | 1 + 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a0c8001..8bd2b0d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,5 +1,15 @@ name: deploy gh-pages -on: [push] +on: + push: + branches: [main] + pull_request: + 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