From 40f58242a9f3d1a8e00030478c28c7c7424be0c1 Mon Sep 17 00:00:00 2001 From: "Eric Richer eric.richer@vistoconsulting.com" Date: Wed, 26 Nov 2025 09:52:25 -0500 Subject: [PATCH] Making run on workflow_dispatch only Signed-off-by: Eric Richer eric.richer@vistoconsulting.com --- .github/workflows/deploy-gh-pages.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index 6972075..4c5122f 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -3,26 +3,25 @@ name: Build and Deploy to GitHub Pages on Release defaults: run: shell: bash - working-directory: ./docs +# working-directory: ./ on: workflow_dispatch: - pull_request: - types: - - closed +# pull_request: +# types: +# - closed jobs: deploy: -# if: github.event.pull_request.merged == true name: Build and Deploy to GitHub Pages - if: ${{ github.event.pull_request.merged == true || github.event == 'workflow_dispatch' }} +# if: ${{ github.event.pull_request.merged == true || github.event == 'workflow_dispatch' }} runs-on: ubuntu-latest defaults: run: shell: bash - working-directory: ./docs +# working-directory: ./ steps: - uses: actions/checkout@v6 - uses: actions/setup-node@v6