From 536c6acb8df4b4aa39b739e633e17c315b0bac45 Mon Sep 17 00:00:00 2001 From: Ezra Brooks Date: Tue, 11 Nov 2025 15:30:58 -0700 Subject: [PATCH] Run docs on every PR to make sure they don't decay between releases --- .github/workflows/docs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b66f4370a..ea24dfef2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,6 +1,10 @@ name: Docs Deployment on: + pull_request: + push: + branches: + - develop release: types: [released] @@ -20,6 +24,7 @@ jobs: run: npm run doc - name: Deploy uses: peaceiris/actions-gh-pages@v4 + if: github.event_name == 'release' with: github_token: ${{ secrets.RWT_BOT_PAT }} publish_dir: docs