From 7415ac577f1725f42dd1f1582e5bb047cb31ff6d Mon Sep 17 00:00:00 2001 From: Aaron Dalton Date: Tue, 7 Jul 2026 18:51:24 -0600 Subject: [PATCH] Trigger docs site deploy from CI relay jobs Dispatch dep_update_dev/prod to AbstractPlay/docs after publish so the docs site rebuilds when renderer changes land. --- .github/workflows/node-dev.js.yml | 10 ++++++++++ .github/workflows/node-prod.js.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/node-dev.js.yml b/.github/workflows/node-dev.js.yml index 8549660..30776b4 100644 --- a/.github/workflows/node-dev.js.yml +++ b/.github/workflows/node-dev.js.yml @@ -83,3 +83,13 @@ jobs: https://api.github.com/repos/abstractplay/designer/dispatches \ -d '{"event_type": "dep_update_prod"}' + - name: Trigger docs site deploy + run: | + curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.PAT_WORKFLOWS }}" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/abstractplay/docs/dispatches \ + -d '{"event_type": "dep_update_dev"}' + diff --git a/.github/workflows/node-prod.js.yml b/.github/workflows/node-prod.js.yml index cc71f19..5bfc77d 100644 --- a/.github/workflows/node-prod.js.yml +++ b/.github/workflows/node-prod.js.yml @@ -81,3 +81,13 @@ jobs: https://api.github.com/repos/abstractplay/designer/dispatches \ -d '{"event_type": "dep_update_prod"}' + - name: Trigger docs site deploy + run: | + curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer ${{ secrets.PAT_WORKFLOWS }}" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + https://api.github.com/repos/abstractplay/docs/dispatches \ + -d '{"event_type": "dep_update_prod"}' +